add a specific column to all tables that exist in an oracle database -
is there way achieve this? like
alter table 'all_tables' add(newcol varchar2(20));
is possible?
run following in sqlplus or sql developer, , run output query
select 'alter table ' || table_name || ' add (newcol varchar2(20));' user_tables
Comments
Post a Comment