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, 2574🔥, 0💬
Popular Posts:
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...