Skip to main content

Hello,

I have the following syntax in a procedure, but it is failing to compile with the following :

 

Can anyone tell me what I am doing wrong please ?

 

 

Hi @JannetteC 

 

I suppose that the following statement is wrong:

email_addr_ varchar(2000) := | ;

 

This should be something like that:

email_addr_ varchar(2000) := ‘|’ ;

OR
email_addr_ varchar(2000) := ’’ ;

 

‘ = single quotation

 

/Jens


This is now resolved


Reply