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
6828
January 28, 2007 01:54PM
3714
January 28, 2007 02:21PM
3768
January 28, 2007 05:49PM
3606
February 23, 2009 09:13AM
Re: create function / procedure local vs. remote
3256
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.