I have a sql script as follows. What does the symbol '/' at the end of this script do?
@create_file.sql;
@check_status.sql;
@update_status.sql;
/
show errors;
I have a sql script as follows. What does the symbol '/' at the end of this script do?
@create_file.sql;
@check_status.sql;
@update_status.sql;
/
show errors;
From the documentation:
Executes the most recently executed SQL command or PL/SQL block which is stored in the SQL buffer.
The buffer has no command history and does not record SQL*Plus commands.