Collections:
Create a Stored Procedure Interactively in Oracle
How To Create a Procedure Interactively in Oracle?
✍: FYIcenter.com
If you want to create a stored procedure interactively, you can use the following steps:
CREATE OR REPLACE PROCEDURE HR.HELLO AS
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello world!');
DBMS_OUTPUT.PUT_LINE('Welcome to PL/SQL!');
END;
Click the Compile icon. The procedure is created.
⇒ Run Stored Procedures Interactively in Oracle
⇐ Export Data to an XML File in Oracle
2019-01-12, 2261🔥, 0💬
Popular Posts:
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...