Re: create function / procedure local vs. remote
DELIMITER $$
DROP FUNCTION IF EXISTS `db`.`na` $$
CREATE FUNCTION `db`.`na`(pName VARCHAR(1024)) RETURNS varchar(1024)
BEGIN
return '';
END $$
DELIMITER ;
db-place in db- database name or db schema
na -place in na- table name
Subject
Views
Written By
Posted
6720
January 28, 2007 01:54PM
3668
January 28, 2007 02:21PM
3716
January 28, 2007 05:49PM
3550
February 23, 2009 09:13AM
Re: create function / procedure local vs. remote
3213
February 23, 2009 06:02AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.