Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> How to refer to a session variable in a PLSQL- Package
Hi everybody
The following Script is running perfectly:
set verify on
set serveroutput on size 500000
define foo = upper
declare
c_nr number(08);
c_value varchar2(50);
cursor c1 is
select nr, name from client where &foo(name) = &foo('Name_Sample');begin
--- But how is it possible to refer to the session-variable 'foo' within a plsql package on the db? Any tips or tricks are highly appriciated. Thanks SteveReceived on Thu Nov 08 2001 - 05:19:54 CST
![]() |
![]() |