oracle - Updating multiple (100+) table column value having same data structure -
i new oracle. have query if can solve thankful you.
details given below,
database name:paul schema: ddpaul table: table_12_101, table_12_102, table_12_199,..........
these tables have same data structure.
column names:
id, number, comp, module, etc..
now, have update/alter column "comp" in table using sql/procedure.
any method select "comp" tables @ once in 1 column?
after saving excel change required values.
main thing now,
i want update "comp" per new excel data respect old one.
table_12_101,...... id | comp | module 56623114 | fa-5920-01 | fa1 56623110 | fa-5921-01 | fa1
e.g. comp changed ca-5920-01 or need remove fa- etc.
please 1 above. thankful you.
you can find table name such column query:
select table_name user_tab_cols column_name = 'comp';
and use name in procedure execute updates.
Comments
Post a Comment