Home » Other » Client Tools » set escape ON in Stored Proc
set escape ON in Stored Proc [message #38631] |
Wed, 01 May 2002 13:16  |
Tracy
Messages: 43 Registered: January 2000
|
Member |
|
|
Hi,
I need to find a way in my stored procedure to SET ESCAPE ON because the procedure will update a table in which the literal contains "&"
for example:
CREATE OR REPLACE PROCEDURE Temp
AS
set escape on ---->>causes error
BEGIN
UPDATE MY_TABLE
SET NAME = 'Short & Interm'
WHERE NAME = 'Short and Interm';
What works in SQL*Plus does not work in PL/SQL
Many thanks,
Tracy
|
|
|
|
|
Goto Forum:
Current Time: Thu May 01 18:43:02 CDT 2025
|