Disclaimer

The views expressed on this blog are my own and do not necessarily reflect the views of Oracle.

Friday, January 25, 2008

Oracle SQL Finding Primary Key on a table

To find the primary key defined on a database table in oracle you can use:

SELECT cols.table_name, cols.column_name, cols.position, cons.status, cons.owner
FROM all_constraints cons, all_cons_columns cols
WHERE cols.table_name = 'TABLE_NAME'
AND cons.constraint_type = 'P'
AND cons.constraint_name = cols.constraint_name
AND cons.owner = cols.owner
ORDER BY cols.table_name, cols.position;

1 comment:

Parmeet Singh said...
This comment has been removed by the author.