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, 4098🔥, 0💬
Popular Posts:
Why I Can Not Enter 0.001 Second in DATETIME values in SQL Server Transact-SQL? If you enter millise...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How to obtain the version number of the ICU (International Components for Unicode) library using the...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...