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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -