2 Star 0 Fork 0

mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
drop_sql_profile.sql 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
Prashant Dixit 提交于 2022-03-05 22:30 . Create drop_sql_profile.sql
undef sql_id
set serveroutput on
set verify off
accept sql_id prompt 'Enter sql_id :'
accept a prompt 'YOU SURE WANNA DROP THIS SQL PROFILE?[N]: '
begin
if('&&a'='Y') then
dbms_output.put_line(CHR(10)||'Deleting this profile.....');
DBMS_SQLTUNE.drop_sql_profile ( name => 'PROFILE_&sql_id', ignore => FALSE);
else
dbms_output.put_line(CHR(10)||'You chose not to delete. exiting..');
end if;
end;
/
undef sql_id
undef a
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts.git
git@gitee.com:mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts.git
mirrors_ReneNyffenegger
fatdba-Oracle-Database-Scripts
fatdba-Oracle-Database-Scripts
main

搜索帮助