How Run SQL*Plus Commands That Are Stored in a Local File?
Submitted by: AdministratorIf you have a group of commands that you need to run them repeatedly every day, you can save those commands in a file (called SQL script file), and using the "@fileName" command to run them in SQL*Plus. If you want to try this, create a file called empinput.sql with:
SELECT 'Welcome to' FROM DUAL;
SELECT 'globalguideline.com!' FROM DUAL;
Then run the "@" command in SQL*Plus as:
SQL> connect HR/retneclgg
SQL> @ empinput.sql
'WELCOMETO
----------
Welcome to
'globalguideline.COM
--------------
globalguideline.com!
Submitted by: Administrator
SELECT 'Welcome to' FROM DUAL;
SELECT 'globalguideline.com!' FROM DUAL;
Then run the "@" command in SQL*Plus as:
SQL> connect HR/retneclgg
SQL> @ empinput.sql
'WELCOMETO
----------
Welcome to
'globalguideline.COM
--------------
globalguideline.com!
Submitted by: Administrator
Read Online Oracle Database Job Interview Questions And Answers
Top Oracle Database Questions
☺ | How To Write Date and Time Interval Literals in Oracle? |
☺ | How Much Memory Your 10g XE Server Is Using? |
☺ | How To Recover a Dropped Table in Oracle? |
☺ | How Oracle Handles Dead Locks? |
☺ | What Is the Relation of a User Account and a Schema? |
Top DB Oracle Categories
☺ | Oracle PL-SQL Interview Questions. |
☺ | Oracle DBA Interview Questions. |
☺ | Oracle D2K Interview Questions. |
☺ | OCI Interview Questions. |
☺ | Forms Reports Interview Questions. |