码迷,mamicode.com
首页 > 数据库 > 详细

call_grant_dml.sql

时间:2016-09-13 16:28:21      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

 

set echo off
prompt
prompt ================================================================================
prompt call_grant_dml.sql &1
prompt

 

set echo off pagesize 0 feedback off verify off serveroutput on size 1000000

define v_input_grantee       = &1

define v_grant_dml_work_file = ./log/grant_dml_work_file_&v_input_grantee..sql

 

--
-- construct the work file
--
spool &v_grant_dml_work_file
begin
  if (‘&v_input_grantee‘ = ‘&v_na‘) then
    dbms_output.put_line(‘-- Skipping this user ...‘);
  else
    dbms_output.put_line(‘@gen_grant_dml &v_input_grantee‘);
  end if;
end;
/
spool off
--
-- call the work file
--
@&v_grant_dml_work_file

call_grant_dml.sql

标签:

原文地址:http://www.cnblogs.com/feiyun8616/p/5868578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!