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, 1692🔥, 0💬
Popular Posts:
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...