PL/SQL Variables
From: James K. Anderson <c0imijka_at_mrd61.mrd-wc.usace.army.mil>
Date: 1995/10/18
Message-ID: <463t6a$999_at_spk41.usace.mil>#1/1
143/14 PLS-00356: 'TABLE_NAME' must name a table to which the user has access
Date: 1995/10/18
Message-ID: <463t6a$999_at_spk41.usace.mil>#1/1
PROCEDURE update_multiple_values (
tssids IN IntArrayTyp,
err_num OUT INTEGER) IS
table_name VARCHAR2(18);
BEGIN
table_name := 'TIME_SERIES_VALUES';
UPDATE table_name
SET ...
When I try to compile the package I get:
LINE/COL ERROR
-------- -----------------------------------------------------------------143/7 PL/SQL: SQL Statement ignored
143/14 PLS-00356: 'TABLE_NAME' must name a table to which the user has access
Is what I am trying to do legal? It so, any ideas as to what is wrong?
Thanks,
Jim Anderson
anderson_at_mrd62.mrd.usace.army.mil
Received on Wed Oct 18 1995 - 00:00:00 CET
