Viewing 3 posts - 76 through 78 (of 78 total)
Here is the entire query:
SELECT CASE
WHEN orig.orig_system is null or orig.orig_system = 'UNKNOWN'
THEN 'ORACLE'
...
November 3, 2008 at 10:31 am
#893118
this is the error i got now:
Msg 8114, Level 16, State 5, Line 2
Error converting data type nvarchar to float.
November 3, 2008 at 10:10 am
#893107
does this pl/sql equal this tsql, it is giving me errors when i run it.
PL/SQL
select /*+ RULE */
decode(orig.orig_system,null,'ORACLE','UNKNOWN','ORACLE',orig.orig_system)||'|'||nvl(orig.orig_system_reference,ca.orig_system_reference)||'|'||
November 3, 2008 at 9:18 am
#893080