Skip to content

Commit 4978208

Browse files
authored
Update create-spa-task.sql
1 parent e9edd8d commit 4978208

File tree

1 file changed

+2
-5
lines changed
  • data-platform/core-converged-db/real-application-testing/sql-performance-analyzer/scripts-spa

1 file changed

+2
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
REM Script create-spa-task.sql
22
REM Create a SQL Performance Analyzer task
33

4-
-- drop existing task if required
5-
-- execute dbms_sqlpa.drop_analysis_task(task_name => '&%taskname%');
6-
7-
-- create task, add STS name and owner of the STS
4+
-- enter STS name and owner of the STS
85
-- print task name
96

107
set serveroutput on
118
declare tname varchar2(100);
129
begin
13-
tname := dbms_sqlpa.create_analysis_task(sqlset_name => '&STSname', sqlset_owner=>'DWH_DATA');
10+
tname := dbms_sqlpa.create_analysis_task(sqlset_name => '&STSname', sqlset_owner=>'&STSOwner');
1411
dbms_output.put_line( 'task name: ' || tname);
1512
end;
1613
/

0 commit comments

Comments
 (0)