Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Run PL/SQL Statements in SQL*Plus
How To Run PL/SQL Statements in SQL*Plus? - Oracle DBA FAQ - Introduction to Command-Line SQL*Plus Client Tool
✍: FYIcenter.com
If you want to run a single PL/SQL statement in SQL*Plus, you need to use the EXECUTE command as shown in the following tutorial example:
SQL> SET SERVEROUTPUT ON
SQL> EXECUTE DBMS_OUTPUT.PUT_LINE('Welcome to FYIcenter!')
Welcome to FYIcenter!
PL/SQL procedure successfully completed.
2007-04-29, 5000👍, 0💬
Popular Posts:
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, ...
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
What is CAR (Causal Analysis and Resolution)? The basic purpose of CAR is to analyze all defects, pr...