How to run multiple Queries or command in Sql Oracle
First create a note pad file and type all the commands in the notepad please rememeber to seperate the command with (;)
eg:-
select * from global_name;
select * from v$parameter;
save the file as sql extension like demo.sql and paste in the your c:\
enter to sql prompt
sql>@c:\demo.sql now all the commnads will run one by one.
Thanks
Naveen
eg:-
select * from global_name;
select * from v$parameter;
save the file as sql extension like demo.sql and paste in the your c:\
enter to sql prompt
sql>@c:\demo.sql now all the commnads will run one by one.
Thanks
Naveen
Comments