Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle SQL error

Status
Not open for further replies.

gchen

Programmer
Nov 14, 2002
174
0
0
US
Hi,

I have below SQL srcipt...

set serveroutput on
declare l_str varchar2(100);
begin
l_str := ConvertTimeToMST(SYSDATE,'EBB');
dbms_output.put_line(l_str);
end;

then i got error message as below...

ERROR at line 1:
ORA-00932: inconsistent datatypes: expected IN Conversion failed

I could not figure what went wrong. Any one any comment?

Thanks a million!

 
Check the prototype of the ConvertTimeToMST function...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top