時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(1)
啟動數(shù)據(jù)庫命令分為三個階段:
startup nomount
alter database mount
alter database open
本用戶讀取其他用戶對象的權(quán)限:
select * from user_tab_PRivs;
本用戶所擁有的系統(tǒng)權(quán)限:
select * from user_sys_privs;
———————————————————
Oracle中數(shù)據(jù)字典視圖分為3大類, 用前綴區(qū)別,分別為:USER,ALL 和 DBA,許多數(shù)據(jù)字典視圖包含相似的信息。
USER_*:有關(guān)用戶所擁有的對象信息,即用戶自己創(chuàng)建的對象信息
ALL_*:有關(guān)用戶可以訪問的對象的信息,即用戶自己創(chuàng)建的對象的信息加上其他用戶創(chuàng)建的對象但該用戶有權(quán)訪問的信息
DBA_*:有關(guān)整個數(shù)據(jù)庫中對象的信息
———————————————
Oracle 10i
ALTER DATABASE DEFAULT TABLESPACE 修改數(shù)據(jù)庫的默認表空間
———————————–
set echo off;
spool 產(chǎn)生腳本文件的路徑
select ‘grant select,insert,delete,update on ’|| table_name||‘ to 用戶名;’ from user_tables;
spool off;
select ‘revoke select,insert,update,delete on ’||table_name||‘ from 用戶名;’ from user_tables;
revoke select,insert,delete,update any table from 用戶名 with grant option;
————–
grant select,insert,delete,insert,update any table to 用戶名 with grant option ;
修改表 所屬的表空間
alter table 表名 move tablespace 表空間名
注意:在此操作之后,一定要把表上的索引重建, alter index index-name rebuild
——————-
創(chuàng)建表空間語句:
create tablespace tableName datafile ‘e:oracle/dbName.dbf’ size 1024M autoextend on next 100M maxsize unlimited;
關(guān)鍵詞標簽:oracle,數(shù)據(jù)庫
相關(guān)閱讀
熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索
人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法