Oracle – Understanding Information_Schema in Oracle

information-schemaoracle

I'm a SQL Server DBA, and I like to mess around with Oracle here and there.

I can see with select * from information_Schema.columns everything about a table (everything that I need now).

Is there a way to list these informations on a Oracle Schema?

Best Answer

The equivalent in Oracle is user_tab_columns for tables owned by the current user or all_tab_columns for tables accessible to the current user.