oracle dba 常用的管理脚本, 覆盖日常的系统管理.

源代码在线查看: grant_update.sql

软件大小: 84 K
上传用户: bling
关键词: oracle dba 脚本 系统管理
下载地址: 免注册下载 普通下载 VIP

相关代码

				--* File Name    : Grant_Update.sql
				--* Author       : DR Timothy S Hall
				--* Description  : Grants update on current schemas tables to the specified user/role.
				--* Call Syntax  : @Grant_Update (schema-name)
				--* Last Modified: 28/01/2001
				SET PAGESIZE 0
				SET FEEDBACK OFF
				SET VERIFY OFF
				
				SPOOL temp.sql
				
				SELECT 'GRANT UPDATE ON ' || u.table_name || ' TO &1;'
				FROM   user_tables u
				WHERE  NOT EXISTS (SELECT '1'
				                   FROM   all_tab_privs a
				                   WHERE  a.grantee    = UPPER('&1')
				                   AND    a.privilege  = 'UPDATE'
				                   AND    a.table_name = u.table_name);
				
				SPOOL OFF
				
				-- Comment out following line to prevent immediate run
				@temp.sql
				
				SET PAGESIZE 14
				SET FEEDBACK ON
				SET VERIFY ON
							

相关资源