0

I am beginner at using SQL and I have searched a lot but couldn't solve that issue. I have about 2500 lines of queries and I need to run all these lines in one shot. When pasting those lines to SQL PLus editor it just executes about 75 lines and ignores the rest of lines Can you guide me please of how to do that? Thanks advanced for help

1 Answer 1

2

Put your SQL statement(s) in a script file and execute it

For instance : open notepad. Paste your SQL. Save the file on your desktop and name it test.sql

Then in SQL plus prompt, just do this :

SQL > @C:\Users\YourName\Desktop\test.sql

(the @ is the trick)

Sign up to request clarification or add additional context in comments.

1 Comment

That's perfect. Thank you very much for great and awesome help

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.