Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
16 lines (16 loc) · 423 Bytes

File metadata and controls

16 lines (16 loc) · 423 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
Morty Proxy This is a proxified and sanitized view of the page, visit original site.