Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
BEGIN
  dbms_output.put_line('Welcome to PL/SQL');
END;
/

I have this code in sample.sql file.
How to run sample.sql?

share|improve this question

1 Answer

up vote 8 down vote accepted

You can run it using SQL*Plus (using your username/password and the name of your instance):

sqlplus username/password@instance @ sample.sql

Another way would be to download free SQL Developer from Oracle, open and execute the file there.


Note that the text will not be displayed per default, you need to enable the output before.

Put the following line into your file as first line:

SET SERVEROUTPUT ON
share|improve this answer
3  
It's better to put the connect string in the sql script, or to get the password through a environment variable; a command like the one Peter Lang showed reveals the password to anyone on the host with the ps command. – Adam Musch Aug 29 '10 at 1:08
@Adam: Excellent point, thanks. – Peter Lang Aug 30 '10 at 5:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.