I was running the following code in sql server 2000 dev. edition
when i got the error:
incorrect syntax near the keyword ‘NULL’.
I also tried:
when i got the error:
‘serveroutput’ is not a recognized option.
How to overcome these errors?
Code:
1. BEGIN 2. NULL; 3. END;
incorrect syntax near the keyword ‘NULL’.
I also tried:
Code:
1. SET SERVEROUTPUT ON SIZE 1000000 2. BEGIN 3. DMBS_OUTPUT.PUT_LINE('Hello PL/SQL'); 4. END; 5. /
‘serveroutput’ is not a recognized option.
How to overcome these errors?
Comment