I have 70+ tables with each having 30+ fields. I was asked to find data type and data length for certain fields in these tables, I thought it would be helpful to have an output file and then just search through it but I am not sure how do I get descr to accept multiple tables and give me an output?
descr table_name;
I have tried
Select table_name, column_name, data_type
From all_tab_columns
where table_name in (NAME OF MY TABLES)
This works but for some reason, the output is a little off in terms of data_length and I need data length as it shows on when executing Descr.
Edit: I am working in SQL developer.
by off I mean in descr I get the outputs for A as datatype NUMBER(38) but in all_tab_columns it gives me data length 22