chushiyunen的博客是因为没有权限,授权即可。 grant select any dictionary...如果只授权视图权限,如下: grant select_catalog_role to guanyu; 取消授权(注意取消是from不是to): revoke select_catalog_role from guanyu; revok...
houyanhua1的博客视图是一个虚表(简化复杂的查询操作,并不存储数据) create or replace view empinfoview as select e.empno,e.ename,e.sal,e.sal*12 annsal,d.dname from emp e,dept d where e.deptno=d.deptno with read on...
zclinux_的博客这里用到的是Oracle的DDL语句的用法 用于获得某个schema下所有的表、索引、视图、存储过程、函数的DDL set pagesize 0 set long 90000 set feedback off set echo off spool schema_ddl.sql SELECT DBMS_...