GeekArticles
FAQ
Oracle FAQColumn Definition Order on Composite Primary Kay
Author: asktom.oracle.com |
Published: 10th Feb 2007 |
Visited: 73 times |
Add CommentFiled in: Oracle FAQSuppose I have a table with composite primary key
create table RULE_INST (
RULE_ID NUMBER(15) not null,
TEST_ID NUMBER(15) not null,
CHECK_ID NUMBER(30) not null,
MOE_TST_GRP VARCHAR2(32) default 'none',
CONSTR...
Read Article Sponsored Links
Related Articles
• Introductions are in order Hello all. My name is Griffin Caprio and I'm a new blogger here on xml.com. Apologizes are in order to Kurt, my fearless editor, since this is my first post and I actually came into the O'Reilly fold back i ...
• SOA Governance Brings Order to Services Chaos Your most valuable SOA assets are worthless if you and your team can't find, use, and manage them. Find out how IBM Rational Asset Manager and IBM WebSphere Service Registry and Repository's governance solution can help you maximize your SOA investment to meet your business ne ...
• Identifying a Primary Key Dear Tom,
Need your advice on determining the Primary Key. There is a table which has got a natural key of data type CHAR(10) which will always be Unique. There are other dependent tables which will refer to this Primary Key. Will it be good to h ...
• CodeSnip: Selecting nth Highest Value of a Column Using Oracle In ths code snippet, Deepankar demonstrates how to select the nth highest value of a column from any table in an Oracle database. He begins by introducing a SQL query and providing a short explanation about it. The final sections of the article examine how to perform validation in two different code ...