grant select/update on table to user; grant 权限 on 表 to 用户。 2.grant 给存储过程赋权限: grant execute on package/function/procedure to user; grant execute on 过程、包、方法 to user 一次把权限给完(过程、包、方法): grant execute any procedure to user; 给其创建触发器权限: grant create...
grant create sequence to zys; grant create any sequence to zys; grant alter any sequence to zys; grant drop any sequence to zys; grant select any sequence to zys; grant create database link to zys; grant create public database link to zys; grant drop public database link to zys; grant...
grant create procedure to 用户名; grant create trigger to 用户名; grant execute any procedure to 用户名; grant grant any privilege to 用户名; grant restricted session to 用户名; grant select any table to 用户名; grant unlimited tablespace to 用户名; grant create any view to 用户名; grant ...
系统权限CREATE ANY PROCEDURE为用户创建任意存储过程的权限。 系统权限ALTER ANY PROCEDURE修改任意存储过程的权限。 系统权限DROP ANY PROCEDURE删除任意存储过程的权限。 系统权限EXECUTE ANY PROCEDURE执行任意存储过程的权限。 系统权限CREATE SYNONYM为用户创建同义词的权限。
grant execute any procedure to demo; grant update any table to demo; grant create any view to demo; [sql] view plaincopy –导入导出命令 ip导出方式: exp demo/demo@127.0.0.1:1521/orcl file=f:/f.dmp full=y exp demo/demo@orcl file=f:/f.dmp full=y ...
GRANT EXECUTE ANY PROCEDURE TO TEST; connect 用户能登录数据库的权限 resource 用户能创建一些数据库对像的权限,表、视图,存储过程,一般是授予开发人员的 drop user cmsuser cascade; 使用cascade参数可以删除该用户的全部objects connect 用户能登录数据库的权限 ...
CREATE ANY CLUSTER CREATE ANY CONTEXT CREATE ANY CUBE CREATE ANY CUBE BUILD PROCESS CREATE ANY CUBE DIMENSION CREATE ANY DIMENSION CREATE ANY DIRECTORY CREATE ANY EDITION CREATE ANY EVALUATION CONTEXT CREATE ANY INDEX CREATE ANY INDEXTYPE CREATE ANY JOB ...
过程、函数、程序包权限:EXECUTE、DEBUG GRANT EXECUTE ON dbms_sql TO scott; GRANT和REVOKE是用来执行权限授予与回收的主要手段。 系统权限的授予情况可以通过Oracle的视图DBA_SYS_PRIVS来查询,这个视图包含被授予权限的用户信息(GRANTEE)以及具体的权限(PRIVILEGE)信息,如果授予权限时允许用户转授这个权限,那么ADMIN_OP...
SQL> grant execute any procedure to hacker; Grant succeeded. SQL> create user loser identified by loser default tablespace users temporary 2 tablespace temp; User created. SQL> grant connect to loser; Grant succeeded. 2.使用测试用户连接
grant execute, read on directory utility_dir to scott; 现在,SCOTT 可以执行 utility_dir 目录中的程序。没有权限的其他任何人都不能执行这些程序。 现在,让我们来看看与之密切相关的第二个特性。由于这个目录实用程序具有所有这些敏感的程序,因此您可能必须确定执行这些程序的所有用户。一个新的审计选项使您能够...