SQL*Plus скрипт за 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;
/
Ако потребителят въведе 1
при първата подкана, генерираният скрипт prompt_for_tablename.sql
ще поиска име на таблица. За всяка друга стойност няма да направи нищо.
След това prompt_for_tablename.sql
се изпълнява (и веднага се изтрива, тъй като вече не ни трябва). Сега &mytable
съдържа или стойността си по подразбиране от началото на скрипта, или каквото потребителят е въвел при подканата.
Добавено:версия с две променливи
Това изгражда динамична заявка като:
select count(*) into vari_axu from &mytable where created > date '&busdate';
За демонстрационни цели можете да въведете името на таблицата като user_objects
(където created
е колона с дата).
Очевидно този вид конструкция става сложна и податлива на грешки, тъй като потребителят трябва да посочи таблица, която има очакваното име на колона, така че не съм сигурен, че препоръчвам да отидете твърде далеч по този път, но все пак:
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;
/
Тест, преминаващ параметър като 2:
SQL> @demo
Enter option 1-9: 2
do not work
PL/SQL procedure successfully completed.
Тест, преминаващ параметър като 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.
(Можете да потиснете successfully completed
съобщения с set feedback off
.)