隻讀權限oracle使用者
-- Create the user
create user SMCQUERY
identified by SMCQUERY;
-- Grant/Revoke role privileges
grant connect to SMCQUERY;
-- Grant/Revoke system privileges
grant select any table to SMCQUERY;
grant debug any procedure to SMCQUERY;
grant debug connect session to SMCQUERY;
grant create any synonym to SMCQUERY;
相關文檔:
在Query Rewrite中大家看到這個技術離不開一樣東西, 實體化視圖, 簡稱MVIEW. 這是Oracle在8i中首先推出的技術, MVIEW除了在Query Rewrite中使用外, 還在Master - Slave複制中有很重要的作用, 在這兒我們主要關心Query Rewrite相關的地方, Oracle在Query Rewrite方面越來越強了, 在Oracle 8i中基本上是Text Ma ......
&nbs ......
下面按類别列出一些ORACLE使用者常用資料字典的查詢使用方法。
一、使用者
檢視目前使用者的預設表空間
SQL>select username,default_tablespace from user_users;
檢視目前使用者的角色
SQL ......
你是否為等待你的查詢傳回結果而感到疲憊?你是否已經為增強索引和調優SQL而感到疲憊,但仍然不能提高查詢性能?那麼,你是否已經考慮建立物化視圖?有了物化視圖,那些過去需要數小時運作的報告可以在幾分鐘内完成。物化視圖可以包括聯接(join)和集合(aggregate)
你是否為等待你的查詢傳回結果而感到疲憊?你是否已 ......
http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96524/c21cnsis.htm#2937
Types of Locks
Oracle automatically uses different types of locks to control concurrent access to data and to prevent destructive interaction between users. Oracle automatically locks a resource on behalf of a tran ......