Skip to main content
Solved

Transaction_sys Log status

  • January 22, 2024
  • 2 replies
  • 84 views

Forum|alt.badge.img+10

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 ?

 

 

Best answer by JannetteC

This is now resolved

2 replies

Jens
Hero (Employee)
Forum|alt.badge.img+10
  • Hero (Employee)
  • 137 replies
  • January 22, 2024

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


Forum|alt.badge.img+10
  • Author
  • Hero (Customer)
  • 62 replies
  • Answer
  • January 23, 2024

This is now resolved