How to pass a table name as a parameter to a stored that runs an update statement on that table in oracle
passing table name as parameter in oracle stored procedure
10.1k Views Asked by Karthikaeyen GV At
2
There are 2 best solutions below
3

You will need to use Dynamic sql for this something like....
PROCEDURE UPDATE_My_Table
(
pTableName IN USER_TABLES.table_name%type,
Param1 IN NVARCHAR2,
Param2 IN NUMBER,
Param3 IN NVARCHAR2
)
IS
BEGIN
execute immediate
'UPDATE '||pTableName
||' SET Column1 = :1, Column2 = :2'
||' WHERE Column3 = :3'
using Param1 , Param2 , Param3;
END;
Do not allow users to enter random table names or you will find that they are changing data you did not expect - at the very least you need to whitelist which tables you are expecting them to pass in: