入侵Oracle數(shù)據(jù)庫常用操作命令 |
發(fā)布時間: 2012/7/13 15:18:15 |
Oracle數(shù)據(jù)庫功能是很強大的,但操作起來有時非常麻煩,下面就為大家介紹入侵Oracle數(shù)據(jù)庫常用操作命令,方便大家以后的工作,減少大家以后少走彎路。
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; 啟動數(shù)據(jù)庫實例 5、查看當前的所有數(shù)據(jù)庫: select * from v$database; select name from v$database; 6、descv$databases; 查看數(shù)據(jù)庫結構字段 7、怎樣查看哪些用戶擁有SYSDBA、SYSOPER權限: SQL>select * from V_$PWFILE_USERS; Show user;查看當前數(shù)據(jù)庫連接用戶 8、進入test數(shù)據(jù)庫:database test; 9、查看所有的數(shù)據(jù)庫實例:select * from v$instance; 如:ora9i 10、查看當前庫的所有數(shù)據(jù)表: 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、增加數(shù)據(jù)庫用戶:(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、更改數(shù)據(jù)庫用戶的密碼:(將sys與system的密碼改為test.) alter user sys indentified by test; alter user system indentified by test; 這就是入侵Oracle數(shù)據(jù)庫常用操作命令的全部內容,希望大家能從中收獲知識。 本文出自:億恩科技【www.cmtents.com】 |