Collections:
Drop a Stored Function in Oracle
How To Drop a Stored Function in Oracle?
✍: FYIcenter.com
If there is an existing stored function and you don't want it any more, you can remove it from the database by using the DROP FUNCTION statement as shown in the following script example:
SQL> CREATE OR REPLACE FUNCTION GET_SITE 2 RETURN VARCHAR2 AS 3 BEGIN 4 RETURN 'FYICentere.com'; 5 END; 6 / Function created. SQL> DROP FUNCTION GET_SITE; Function dropped.
⇒ Call a Stored Functoin with Parameters in Oracle
⇐ Call a Stored Function in Oracle
2018-10-26, 3860🔥, 0💬
Popular Posts:
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
Where to find answers to frequently asked questions in general areas of Microsoft SQL Server Transac...