SQL*Plus skript pro Windows:
set define "&"
set verify off
define mytable = dual
accept param prompt "Enter option 1-9: "
-- Generate a script named prompt_for_tablename.sql which prompts the user for a table name
-- or does nothing, depending on the value of ¶m:
set termout off
column mytable new_value mytable
set head off feedback off
spool prompt_for_tablename.sql
select 'accept mytable char prompt "Enter table name: "' as prompt from dual where ¶m = 1;
spool off
set termout on head on feedback on
@prompt_for_tablename.sql
host del prompt_for_tablename.sql
declare
vari_axu number;
begin
if ¶m = 1 then
dbms_output.put_line ('work here');
select count(*) into vari_axu from &mytable ;
dbms_output.put_line('Count of &mytable: ' || vari_axu);
return;
end if;
dbms_output.put_line ('do not work' );
end;
/
Pokud uživatel zadá 1
na první výzvu vygenerovaný skript prompt_for_tablename.sql
vyzve k zadání názvu tabulky. Pro jakoukoli jinou hodnotu to neudělá nic.
Poté prompt_for_tablename.sql
je spuštěn (a okamžitě odstraněn, protože jej již nepotřebujeme). Nyní &mytable
obsahuje buď svou výchozí hodnotu ze začátku skriptu, nebo cokoli, co uživatel zadal na výzvu.
Přidáno:verze se dvěma proměnnými
Tím se vytvoří dynamický dotaz jako:
select count(*) into vari_axu from &mytable where created > date '&busdate';
Pro účely ukázky můžete zadat název tabulky jako user_objects
(kde created
je sloupec data).
Je zřejmé, že tento druh konstrukce je komplikovaný a náchylný k chybám, protože uživatel musí zadat tabulku, která má očekávaný název sloupce, takže si nejsem jistý, zda doporučuji jít touto cestou příliš daleko, ale přesto:
set define "&"
set verify off
define mytable = dual
define busdate = "0001-01-01"
define if_param_is_1 = "--"
accept param prompt "Enter option 1-9: "
-- Generate a script named prompt_for_tablename.sql which prompts the user for a table name
-- or does nothing, depending on the value of ¶m:
set termout off
column mytable new_value mytable
column if_param_is_1 new_value if_param_is_1
set head off feedback off
spool prompt_for_tablename.sql
select prompt, null as if_param_is_1 -- uncomment
from
(
select 'accept mytable char prompt "Enter table name: "'||chr(13)||chr(10) as prompt from dual
union all
select 'accept busdate date format ''YYYY-MM-DD'' prompt "Enter business date (YYYY-MM-DD): "' from dual
)
where ¶m = 1;
spool off
set termout on head on feedback on
@prompt_for_tablename.sql
host del prompt_for_tablename.sql
declare
vari_axu number;
begin
&if_param_is_1 dbms_output.put_line ('work here');
&if_param_is_1 select count(*) into vari_axu from &mytable where created > date '&busdate';
&if_param_is_1 dbms_output.put_line('Count of &mytable created after &busdate: ' || vari_axu);
&if_param_is_1 return;
dbms_output.put_line ('do not work' );
end;
/
Parametr absolvování testu jako 2:
SQL> @demo
Enter option 1-9: 2
do not work
PL/SQL procedure successfully completed.
Parametr absolvování testu jako 1:
SQL> @demo
Enter option 1-9: 1
Enter table name: user_objects
Enter business date (YYYY-MM-DD): 2010-01-01
work here
Count of user_objects created after 2010-01-01: 93772
PL/SQL procedure successfully completed.
(Můžete potlačit successfully completed
zprávy s set feedback off
.)