Solved

Transaction_sys Log status

  • 22 January 2024
  • 2 replies
  • 22 views

Userlevel 3
Badge +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 ?

 

 

icon

Best answer by JannetteC 23 January 2024, 11:15

View original

2 replies

Userlevel 4
Badge +8

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

Userlevel 3
Badge +10

This is now resolved

Reply