我有一个包含如下语句的 sqlscript:
prompt Enter 'html' for an HTML report, or 'text' for plain text
prompt Defaults to 'html'
column report_type new_value report_type;
set heading off;
select 'Type Specified: ',lower(nvl('&&report_type','html')) report_type from dual;
因此,当我运行脚本时,它会提示我输入值。我想自动化这个脚本。我将如何传递给然后用于提示的脚本参数?我根本无法通过删除提示来修改脚本。
我正在使用 Windows Server 2008 和 Windows 7。