登錄oracle數據庫時常用的操作命令整理~很久不用就會忘

1、su – oracle 不是必需,適合於沒有DBA密碼時使用,可以不用密碼來進入sqlplus界面。

2、sqlplus /nolog 或sqlplus system/manager 或./sqlplus system/manager@ora9i;

3、SQL>connect / as sysdba ;(as sysoper)或

connect internal/oracle AS SYSDBA ;(scott/tiger)

conn sys/change_on_install as sysdba;

4、SQL>startup; 啓動數據庫實例

5、 查看當前的所有數據庫: select * from v$database;

select name from v$database;

desc v$databases; 查看數據庫結構字段

7、怎樣查看哪些用戶擁有SYSDBA、SYSOPER權限:

SQL>select * from V_$PWFILE_USERS;

Show user;查看當前數據庫連接用戶

8、進入test數據庫:database test;

9、查看所有的數據庫實例:select * from v$instance;

如:ora9i

10、查看當前庫的所有數據表:

SQL> select TABLE_NAME from all_tables;

select * from all_tables;

SQL> select table_name from all_tables where table_name like '%u%';

TABLE_NAME

------------------------------

_default_auditing_options_

11、查看錶結構:desc all_tables;

12、顯示CQI.T_BBS_XUSER的所有字段結構:

desc CQI.T_BBS_XUSER;

13、獲得CQI.T_BBS_XUSER表中的記錄:

select * from CQI.T_BBS_XUSER;

14、增加數據庫用戶:(test11/test)

create user test11 identified by test default tablespace users Temporary TABLESPACE Temp;

15、用戶授權:

grant connect,resource,dba to test11;

grant sysdba to test11;

commit;

16、更改數據庫用戶的密碼:(將sys與system的密碼改爲test.)

alter user sys indentified by test;

alter user system indentified by test;

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章