我有一个巨大的Oracle DB更新列表。这是一些生产支持工作。
我的样本更新就像这样
update XYZ
set name = 'abb',
job = 'mgr'
where joining_date = to_date('2015-02-11'
and job_id in (....list of job_id this can be anywhere in 1000s...);
update XYZ
set name = 'jab',
job = 'appdev'
where joining_date = to_date('2016-03-10'
and job_id in (....list of job_id this can be anywhere in 1000s...);
根据加入日期和job_ids,有几个更新。该列表已打开,然后打开。
这里真正缺少的是日期格式'yyyy-mm-dd'
。
我正在使用UltraEdit。这是我的客户提供的唯一编辑器。
我必须将此日期格式附加到日期。
我尝试使用正则表达式查找和替换
查找[0-9]
替换',' yyyy-mm-dd'
如果我这样做,日期中的最后一个号码也会被替换。
我有SQL开发人员,如果我们能够在SQL开发人员中实现这一目标,那么他们也会很棒。
答案 0 :(得分:1)
如果我正确理解了这个问题,那么您正在寻找一种方法将文本'yyyy-mm-dd'
附加到所有date
语句中,以便2个示例如下所示:
update XYZ
set name = 'abb',
job = 'mgr'
where joining_date = to_date('2015-02-11','yyyy-mm-dd')
and job_id in (....list of job_id this can be anywhere in 1000s...);
update XYZ
set name = 'jab',
job = 'appdev'
where joining_date = to_date('2016-03-10','yyyy-mm-dd')
and job_id in (....list of job_id this can be anywhere in 1000s...);
如果这是正确的,您可以使用以下选项执行“搜索和替换”操作:
to_date\(('[\-0-9]*')
to_date($1,'yyyy-mm-dd')