sqlserver 存储过程 转oracle存储过程,SqlServer存储过程转换成Oracle储存过程语法常见问题...

1. top order by 转换成 rownum order by 的问题 (子查询实现)

同级情况下的优先处理顺序:

sqlserver: 先order by 再top

oracle: 先rownum 再 order by

2. 已有数据的字段类型不匹配,通过下列语句修改。

alter table css_sed rename column action to myaction;

alter table css_sed add (action varchar2(20));

update css_sed set action = myaction;

alter table css_sed drop column myaction;

3. 多个cast问题

isnull(cast(cast(GR_WT as int) as varchar),'') sqlserver

nvl(cast(trunc(cntr_row.GR_WT) as varchar2),'') plsql

4. if exists问题

oracle 没有这个语法

解决方法: 拿一个临时变量储存结果来判断

begin

select count(*) into V_CNT from all_tables where table_name = 'CUST_BC_ONLINE';

if(V_CNT > 0)

then

execute immediate 'truncate table CUST_BC_ONLINE';

end if;

end;

5. SqlServer: with index()语法问题

Oracle: 使用index hints实现 eg: select /*+ index(t i_t) */ * from t where username='EYGLE';

6. nvl(date,0) 问题

isnull(MCS_SHPT_INFO.LAST_MOD_DT,0) < b.LAST_MOD_DT

nvl(MCS_SHPT_INFO.LAST_MOD_DT,to_date('1900-01-01','yyyy-mm-dd'))) < b.LAST_MOD_DT

7. top 赋值问题

select top(5) @param = column from table

sqlserver默认会把最后一条数据的字段赋值给指定参数,oracle会报错,就是选择出来的行数不匹配。

8. declare的变量只能跟在后面的begin end 语句块使用

9. 字符串拼接问题

oracle: null跟字符串拼接,会把null当成空字符串处理

sqlserver: null跟字符串拼接,会把整个字符串设置为一个空格

10. Oracle异常信息打印

dbms_output.put_line(dbms_utility.format_error_stack());

dbms_output.put_line('----------------------------------------------------------------');

dbms_output.put_line(dbms_utility.format_call_stack());

dbms_output.put_line('----------------------------------------------------------------');

dbms_output.put_line(dbms_utility.format_error_backtrace());

dbms_output.put_line('----------------------------------------------------------------');

dbms_output.put_line(sqlcode);

dbms_output.put_line(sqlerrm);

11. SqlServer:select into 语法问题

SqlServer:

select into table2 from table1

备注:table2可以不存在

Oracle:

insert into table2 select * from table1

备注:要求table2必须存在

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值