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, 3295🔥, 0💬
Popular Posts:
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
Can Binary Strings Be Converted into NUMERIC or FLOAT Data Types in SQL Server Transact-SQL? Can bin...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...