oracle - Effect of adding new columns to existing table -


in project there new requirement, in i've add 2 new columns existing table.

how can analysis effect of adding 2 new columns table?

please note: find dependencies using all_dependencies view , have used all_source find few more information.

could please guide me right approach follow in project?

edit1: question attracted negative points. improve according suggestion.

adding column not impact view/triggers/procedures, if developers have used proper column names in them. if used select * your_table in of view/procedure/triggers, might in trouble.

you on right path. check dba_source properly. table name schema1.table1, search in all_source using where upper(text) '%table1%'

also if there dblink in other databases database, might need take care of too.


Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -