博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
call_grant_dml.sql
阅读量:6365 次
发布时间:2019-06-23

本文共 678 字,大约阅读时间需要 2 分钟。

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

转载于:https://www.cnblogs.com/feiyun8616/p/5888229.html

你可能感兴趣的文章
什么时候用removeUnusedSpriteFrames和removeUnusedTextures
查看>>
减而治之
查看>>
前端模块化开发的价值
查看>>
How to Run PowerShell Commands on Remote Computers
查看>>
du熊学斐波那契I
查看>>
RD Client、TeamViewer连接主机
查看>>
又通过一道题目,替换字符串 —— 剑指Offer
查看>>
GAN Generative Adversarial Network 生成式对抗网络-相关内容
查看>>
【转载】程序员的鄙视链
查看>>
python学习笔记3:数指、布尔值与空值
查看>>
centos安装mongodb
查看>>
<Android 应用 之路> 简易手电筒
查看>>
js中如何删除某个元素下面的所有子元素?(两种方法)
查看>>
基于PHP实现一个简单的在线聊天功能(轮询ajax )
查看>>
js基础
查看>>
数据库连接的理解
查看>>
2.服务器端编程实例-回射服务器端程序(多进程)
查看>>
ndk-build出错,错误以及解决办法如下
查看>>
017 策略模式和代理模式的区别
查看>>
串口概念
查看>>