Answers for "where do i run a sql script"

SQL
4

execute sql script

sqlplus username/password@service	-- OR sqlplus / as sysdba
 SQL> SELECT sysdate FROM dual;
 SQL> @C:Usersfolderscript.sql
-- OR
 SQL> START C:Usersfolderscript.sql
Posted by: Guest on August-06-2021
0

how to run sql query

/*in Sql Server (SSMS)*/
/*Hightlight the statements you would like to execute*/
/*Then click on the green play button (somtimes with the word execute) or press F5*/
Posted by: Guest on September-03-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language