table structure...
friends..
oracle 11g
I'm trying to write sql script to get table structure of all tables that a particular user can see from all_tab_columns...
i know we can do desc table_name and get table structure but trying to get output in file so that can compare all tables in different database by linux diff command..
diff file1.txt file2.txt
for a single table it's easy but if user/schema has 50 tables then it gets tricky....
any thoughts / tips??