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, 3859🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...
How to detect the collation coercibility associated to a given character string using the COERCIBILI...