Hi All,
Could anyone please let me know the difference between placing ';' and '/' in the sql scripts.
I am placing couple of insert statements in a textfile with .sql extension and running it from the sql prompt.
Which one( ';' or '/') should be keep at the end of each statement in the script.
SQL> SELECT SYSDATE FROM DUAL;
SYSDATE
---------
12-MAY-13
SQL> SELECT SYSDATE FROM DUAL
2 /
SYSDATE
---------
12-MAY-13
Thanks,