-1
votes
2answers
28 views

In Oracle, how would I begin to create the tables when all the needed tables have both foreign and primary key constraint?

In Oracle, Lets say there are 3 tables with primary key and foreign key on each table. So, If i were to start creating the tables, how would i start. I started to create a first table with primary ...
-1
votes
1answer
72 views

Primary key composed of two foreign keys? Oracle

I have a question regarding a table creation. I want to combine the attributes of "Ono" and "Pno" into a primary key for a new table. These are both foreign keys, each from different tables. Do I just ...
0
votes
3answers
26 views

Oracle Referencing Primary Key

Primary key of parent got its value from sequence customerNo = customerSeq.nextval. How do I insert that value into child table as foreign key? insert into account values ...
0
votes
1answer
39 views

Referencing a composite primary key

I have two tables, with each table having a composite primary key. One attribute is in both composite primary keys. How am i supposed to reference the common attribute?? Do i just reference it as a ...
0
votes
2answers
62 views

SQL declare a primary key or a primary key constraint

In Oracle SQL, what's the difference between declaring a field as PRIMARY KEY as in CREATE TABLE my_tab ( my_var NUMBER PRIMARY KEY, ... and adding a CONSTRAINT at the end of the table definition? ...
1
vote
1answer
43 views

Should I index primary key column(s) in Oracle

I've recently stopped to think that Primary Keys are not indexes, they're a combination of Unique and Null constraints. And till now, I've never created index for PK columns. My question is if I ...
4
votes
1answer
218 views

How to get generated keys from JDBC batch insert in Oracle?

I am inserting many records using JDBC batch inserts. Is there any way to get the generated key for each record? Can I use ps.getGeneratedKeys() with batch inserts? I am using ...
0
votes
1answer
39 views

Getting IDs that were not inserted via sequences in Oracle

Not sure if this is possible and I may be misunderstanding sequences here... I have an SQL script that is adding data to a table in oracle. Each table has a primary key which is generated via a ...
0
votes
1answer
47 views

How to establish a distinct relationship between user and his contacts in a table

Please help me solve this problem I am trying to create a relationship table in sql but the challenge I am facing is If there are 3 users, u1, u2, u3 in user_table create table user_tab (user_id ...
1
vote
2answers
56 views

EF not recognizing PK of view in Oracle

I am using Oracle as the DB, VS2012, and EF 5.0. I know the table has a PK (Composite Key) and I create a view with create view v_table_name as select * from table_name When I try to add the view ...
1
vote
1answer
94 views

Oracle SQL optional primary key

I'm having a problem in an oracle SQL project I'm working on: I have a (weak) entity 'Ticket' that has as primary key: (Customer_id,packet_id,project_id,ticket_id). Customer_id, packet_id and ...
1
vote
1answer
125 views

Primary Key generation MySQL Hibernate

I have an application deployed across 2 instances. Database: MySQL ORM: Hibernate However, I need to implement an Oracle sequence like behaviour. Since MySQL doesn't have any, I simply created a ...
1
vote
1answer
59 views

Oracle: Make a composite Key containing three Foregin keys

This is my code: create table orderline ( Order_No number(4) constraint orderno_fk references order_detail(Order_No), Product_Code varchar2(6) constraint productcode2_fk references ...
0
votes
3answers
906 views

Oracle Sql: foreign-key is also primary key syntax

I just have a quick question about notation. I have two tables right now. This one has basic animal information: create table d_animals ( an_id integer primary key , an_gender ...
0
votes
0answers
40 views

Oracle Primary Key generation using the Entity Framework [duplicate]

Possible Duplicate: How to create id with AUTO_INCREMENT on Oracle? I am creating my first application that uses the Entity Framework to access data in an Oracle Database. The Database ...
1
vote
3answers
109 views

What is the better way to organize primary keys in database?

My database holds two tables, one is distance matrix of cities, the other holds cities. My first structure was like this: City Uuid Name Latitude Longitude and Distance FromCityID ToCityID ...
1
vote
1answer
320 views

PK violated in oracle sql

I wonder if anyone can help me with this. I ran the whole thing in sql but its gives me this error: Error report: SQL Error: ORA-00001: unique constraint (GAMES.ATHLETE_PK) violated 00001. ...
1
vote
3answers
1k views

Should I use Oracle's sys_guid() to generate guids?

I have some inherited code that calls SELECT SYS_GUID() FROM DUAL each time an entity is created. This means that for each insertion there are two calls to Oracle, one to get the Guid, and another to ...
1
vote
3answers
205 views

Generating unique reference number

Tech Stack: Java 1.6, JPA (Hibernate 3), Spring 3, Oracle 11g I am working on a project where one of the requirement is to give back the customers a ‘ReferenceNumber’. One option is to return the ...
1
vote
4answers
5k views

Oracle (ORA-02270) : no matching unique or primary key for this column-list error

I have two tables, Table JOB and Table USER, here is the structure CREATE TABLE JOB ( ID NUMBER NOT NULL , USERID NUMBER, CONSTRAINT B_PK PRIMARY KEY ( ID ) ENABLE ); CREATE ...
0
votes
4answers
495 views

How to have unique primary key in two tables?

I have two tables in my system EMPLOYEE and EMPLOYEE_FORECAST. Both have the same columns, entire structure is same. I have another archive table with same structure called EMPLOYEE_ARCHIVE table. I ...
1
vote
1answer
186 views

Oracle Backup and restore constraints to allow changing a column type

I need to change a column type in more than 200 tables I am following the next recipe: Disable all foreign constraints if the column is referenced by any FK Store columns in varray and Drop primary ...
1
vote
1answer
303 views

Can not set Sorted ASC Index on primary key field in oracle

When I try to add a sorted ASC index on the field MyId the oracle sql developer tool says: Index MyIdSortedIndex is defined identically to constraint PK_MyTable CREATE TABLE MyTable ( "MyId" ...
1
vote
1answer
772 views

Data type for database primary key

I am creating a database and in the tables the primary key value is 1 2 3 4 etc. My teacher said i can use number(4) for the primary key data type. However some suggest that I use 'int(20) unsigned' ...
0
votes
4answers
485 views

set two foreign key attribute as a composite primary key for another table in oracle

I'm having two column in STUDENTSINTEST table as 1.TestID 2.StudentID both are foreign key for some tables, now i want to know how to set those two column as a composite primary for STUDENTSINTEST ...
3
votes
2answers
2k views

Forcing Oracle to use Primary Key Index without using Hints

We have an application that generates some temporary tables and then processes the data. I dont really have control of the way the application creates this and the subsequent queries involved. What we ...
0
votes
2answers
280 views

Number or char for primary key column

I'm building a database of a very important state institution. So far, for Primary Key columns I've sometimes used numbers, particularly int32 or int64, and sometimes I've used char but still I stored ...
6
votes
2answers
4k views

Superkey, candidate key & primary key

can any kind soul clarify my doubts with a sample example below for the superkey, candidate key and primary key. I know there are alot of posts and websites out there explaining what's the ...
2
votes
0answers
206 views

Legacy database mixes primary and foreign keys: update error “The property is part of the object's key information and cannot be modified”

Consider the following tables: create table master ( nr number(10,0) identity primary key lastmodified date scn number(12,0) -- update from sequence with every update ) create table details ...
1
vote
2answers
76 views

Paging results from a table having a varchar as PK

How can I page results from a table with this schema? CREATE TABLE "MY_TABLE" ( "NAME" VARCHAR2(100 BYTE) NOT NULL ENABLE, "STATUS" VARCHAR2(20 BYTE), "DESCRIPTION" VARCHAR2(4000 BYTE) ...
0
votes
2answers
71 views

Invalid FK and PK reference

Unable to create table as oracle shows ' no matching unique or primary key for this column-list' when I did label the primary key reference for the required table. First table created successfully: ...
-3
votes
1answer
196 views

sql error - unique constraint

I have one data migration script like this. Data_migration.sql It's contents are insert into table1 select * from old_schema.table1; commit; insert into table2 select * from old_schema.table2; ...
2
votes
6answers
2k views

How can a primary key column have duplicated values in Oracle?

I have just tried to import an Oracle DB to another and it gave an error tells that duplicated values found in a primary key column. Then I checked the source table, and yes really there are duplicate ...
1
vote
3answers
536 views

two tables with the same sequence

Is possible to have two tables with the same incrementing sequence? I was trying to do a tree with ID, NAME, ParentID and i have to join two tables. If i have different id the tree scheme of ID - ...
1
vote
1answer
203 views

Are statistics computed for indexes associated to primary keys in Oracle 9?

I'm beginning to work with Oracle and I've learn that in Oracle 9 statistics aren't collected for an index unless you use COMPUTE STATISTICS, but you can't use that option when defining a primary key, ...
1
vote
3answers
471 views

How to find out what table's primary keys are using a select query

Is it possible to run SELECT PIRMARY_KEY FROM SomeTable, where PRIMARY_KEY is a keyword that will automatically translate to SomeTable's primary key columns I am using Oracle database
0
votes
0answers
61 views

Rose::DB , Oracle and a non-conventional primary_key [closed]

I'd like to share a problem + workaround for people who use : Rose::DB Oracle primary keys which don't follow the Rose::DB convention (pks' which are not named "ID" ) I ran into some trouble ...
1
vote
1answer
4k views

Multiple Primary Keys Table - Hibernate NonUniqueObjectException

I have a table with 2 primary keys (so the combination of both of them should be unique). The schema is like this: TABLE="INVOICE_LOGS" INVOICE_NUMBER PK non-null INVOICE_TYPE PK non-null ...
0
votes
3answers
218 views

Add primary key to table based on timestamp

Let us say we have the following table structure and values: FooTable: foo1 foo2 timestamp 1 1 1 2 2 1 2 1 2 Currently there is no primary ...
3
votes
3answers
2k views

Best way to reset an Oracle sequence to the next value in an existing column?

For some reason, people in the past have inserted data without using sequence.NEXTVAL. So when I go to use sequence.NEXTVAL in order to populate a table, I get a PK violation, since that number is ...
2
votes
3answers
619 views

Identical Oracle db setups: exception on just one of them

edit: Look to the end of this question for what caused the error and how I found out. I have a very strange exception thrown on me from Hibernate when I run an app that does batch inserts of data ...
1
vote
2answers
2k views

What is the proper way to catch and handle ORA-00001 SQLException with JDBC?

I'm creating a simple form that stores entered data in an extremely simple Oracle database table via a Java Servlet using JDBC. That table is using the email address as a primary key. If a user ...
0
votes
3answers
914 views

Foreign key in oracle

I have created a table in oracle which has one FK that refers to 3 primary keys in 3 different table.But when I want to insert into it I see an error says parent key not found!what should I do? ...
1
vote
4answers
459 views

Should I avoid using a primary key and use an indexed, unique column?

I have created a new table with no primary key. But the table does have one field which is unique and indexed. This column is has got unique values and I can make it Primary. But what kind of impact ...
3
votes
2answers
926 views

How to discover the underlying primary (or unique) key columns from an Oracle view

I was wondering whether there is a possibility for me to discover the underlying primary (or unique) key columns for all tables involved in an Oracle view. Here's an example to show what I mean: ...
1
vote
1answer
446 views

How to find out if a column is an auto increment field in oracle?

Just as the title says. How do I find this out?
2
votes
3answers
2k views

Change primary key value in Oracle

Is there a way to change the value of a primary key which is referenced by another table as foreign key?
0
votes
3answers
6k views

How to add a Primary Key on a Oracle view? [duplicate]

Possible Duplicate: adding primary key to sql view I'm working with a software that requires a primary key in a Oracle view. There is possible to add a Primary key in a Oracle view? If yes, ...
3
votes
3answers
561 views

Oracle Database: Index-Organized Table with NULL Values (in Multiple-Column Primary Key)

How can I set a column to be an "" (the empty string, equivalent to NULL in Oracle), when that column is part of a multiple-column primary key? This is the motivation... CREATE TABLE entities ( ...
2
votes
2answers
703 views

Getting correct auto incremented ID in Oracle DB

I am inserting one row into the ORACLE database table, where the primary key ID is autoincrement. and I am retriving the autoincremented ID from that TABLE. In case of many people using the same ...

1 2