Collections:
Run PL/SQL Statements in SQL*Plus in Oracle
How To Run PL/SQL Statements in SQL*Plus in Oracle?
✍: 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.
⇒ Change SQL*Plus System Settings in Oracle
⇐ Run SQL Commands in SQL*Plus in Oracle
2020-07-22, 3980🔥, 0💬
Popular Posts:
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
How Many Groups of Data Types in MySQL? MySQL support 3 groups of data types as listed below: String...
How Run SQL*Plus Commands That Are Stored in a Local File in Oracle? If you have a group of commands...
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...