【发布时间】:2016-04-13 22:55:33
【问题描述】:
我曾经用这个指令作为我的工作名称
job_name=>' "TR_DB"."myJOB_name" '
但现在我需要在 apex 中将作业名称作为变量传递,该怎么做? 我试过了,但没有用
job_name=>' "TR_DB".|| :P_12_TESt '
【问题讨论】:
-
这是因为这是一个字符串:
' anything between single quotes ',所以要将你需要的东西连接到' end one string with a quote ' || ' and start another string with another quote '。
标签: oracle oracle11g oracle-apex job-scheduling