代码之家  ›  专栏  ›  技术社区  ›  FrustratedWithFormsDesigner

将sqlplus变量的值从一个脚本传递到另一个脚本

  •  2
  • FrustratedWithFormsDesigner  · 技术社区  · 14 年前

    我有一个获取当前时间的脚本,必须将其传递给另一个脚本。

    variable v_s_time varchar2(30);
    exec :v_s_time := to_char(sysdate,'YYYY-MM-DD HH:MI:SS AM');
    --Lots of unrelated code here
    variable v_e_time varchar2(30);
    exec :v_e_time  := to_char(sysdate,'YYYY-MM-DD HH:MI:SS AM');
    @"test report script.sql" :v_s_time :v_e_time; --yes, I also tried ":v_s_time", didn't seem to do anything.
    

    这不起作用,看起来 :v_s_time 传递给脚本,而不是我想要的: "2010-04-14 05:50:01 PM" .

    要手动执行此操作,我可以输入:

    @"test report script.sql" "2010-04-14 05:50:01 PM" "2010-04-14 05:57:34 PM"
    

    我发现有效的是:

    define v_s_time = "2010-04-14 05:50:01 PM"
    --Lots of unrelated code here
    define v_e_time = "2010-04-14 05:57:34 PM"
    @"test report script.sql" "&&v_s_time" "&&v_e_time";
    

    但硬编码日期时间是不现实的。有人知道怎么处理吗?

    (Oracle 10g)

    2 回复  |  直到 14 年前
        1
  •  4
  •   Vincent Malgrat    14 年前

    你可以使用 NEW_VALUE clause of the COL command 要将值动态检索到替换变量中,请执行以下操作:

    SQL> /*Declare that the "dat" column will be stored in the v_date variable*/
    SQL> COL dat NEW_VALUE v_date
    
    SQL> SELECT to_char(sysdate,'YYYY-MM-DD HH:MI:SS AM') dat FROM dual;
    
    DAT
    ----------------------
    2010-04-15 09:54:29 AM
    
    SQL> select '&&v_date' from dual;
    
    '2010-04-1509:54:29AM'
    ----------------------
    2010-04-15 09:54:29 AM
    

    然后可以使用此替换变量调用脚本:

    @"test report script.sql" &&v_date
    
        2
  •  1
  •   DCookie    14 年前

    你能在“test report script.sql”脚本中引用绑定变量吗?换句话说,在“test report script.sql”中,可以直接引用v_s_s_time和v_e_time,跳过sql 加上定义变量。从bind变量到sql的转换似乎没有什么真正优雅的方法 加上定义变量。