Horje
how to check constraints on a table in sql oracle Code Example
how to check constraints on a table in sql oracle
SELECT *
  FROM user_cons_columns
 WHERE table_name = '<your table name>';
how to find constraints on a table in oracle
SELECT cons.OWNER 			AS CHILD_OWNER,
       cons.TABLE_NAME 		AS CHILD_TABLE,
       cons.CONSTRAINT_NAME AS CONSTAINT_NAME,
       cons.CONSTRAINT_TYPE AS CONSTRAINT_TYPE,
       col.OWNER 			AS PARENT_OWNER,
       col.TABLE_NAME 		AS PARENT_TABLE,
       col.COLUMN_NAME 		AS COLUMN_NAME
FROM DBA_CONS_COLUMNS col, DBA_CONSTRAINTS cons
WHERE cons.R_OWNER = col.OWNER
  AND cons.R_CONSTRAINT_NAME = col.CONSTRAINT_NAME
  AND cons.TABLE_NAME = 'table_name';




Typescript

Related
typerscript online compiler Code Example typerscript online compiler Code Example
embed python in html Code Example embed python in html Code Example
removing alphabets from a string in python Code Example removing alphabets from a string in python Code Example
has apple distribution certificate installed but its private key Code Example has apple distribution certificate installed but its private key Code Example
sockjs-node/info?t=net::ERR_CONNECTION_TIMED_OUT Code Example sockjs-node/info?t=net::ERR_CONNECTION_TIMED_OUT Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7