0
votes
0answers
20 views

How to realize that an Oracle SQL OBJECT VARRAY elements using as foreign key

I created an OBJECT type and a VARRAY: CREATE TYPE termek_adat IS OBJECT( termek_id number(3), termek_db number(3)); / CREATE type TERMEK_INF is VARRAY(10000) OF termek_adat; I created a table: ...
-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
75 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
2answers
36 views

Altering Oracle table: invalid identifier

Using Oracle Application Express for Oracle 11g Adding a foreign key constraint to a preexisting table. Table: COMMUNICATION COMMUNICATION-ID NUMBER COMMUNICATIONTYPE_ID VARCHAR2(6) ...
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
42 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
1answer
37 views

Oracle Foreign or Primary keys

I'm a bit confused over when I should use a primary or foreign key. I have two tables, and in both of them, some of the columns reference columns that are primary keys in other tables. Here they are: ...
1
vote
2answers
131 views

Oracle - Deleting row from child table locks parent table

We have deadlock issue in Oracle 11.2g. One potential reason why deadlock occurs is deleting from child table locks parent table. I searched from oracle documentations, and did't find any ...
0
votes
2answers
40 views

Foreign Key to Composite Primary Key

I have a problem with foreign keys. The master table is: Course (courseName, courseId) and PK is courseId The second table is: Section (sectionId, courseId) and PK is (sectionId, courseID), ...
1
vote
1answer
94 views

Why oracle trigger on delete is executed when foreign key is set to null

I have primary table AAAA and table BBBB which has FK to table AAAA. FK constraint is ON DELETE SET NULL. There is also trigger ON DELETE ON table BBBB. In this trigger there is delete from AAAA ...
0
votes
1answer
49 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
0answers
47 views

How disable checking data integration in create statement (reference to non-existing table)

Let assume that I have an empty database and I want to create two tables. There is a relationship between them. For example, one of attributes (call them b) in R is a foreign key. The definition ...
1
vote
1answer
144 views

SQL where clause with composite key

I'm writing custom Oracle queries to delete data from child tables in order to avoid foreign key constraint as part of a utility to clean up test data. Let's say I've two tables - Table 1 (PK - ...
-3
votes
1answer
37 views

Trying use foreign key in SQL and doesn't work [closed]

I tried using this command in SQL and it doesn't work with the foreign key. Any help please create table mine (mi_id number(10) not null, constraint mine_pk primary key (mi_id), ...
1
vote
2answers
125 views

Sql change Data Type

There is one column named Line_no (smallint) now. I want to change this column data type is bigint ,but this column is primary key, and have so many tables has foreign key reference on it, so how to ...
0
votes
0answers
46 views

Best way to merge tables for two different aplications

I have two applications say App1 and App2 using almost similar set of tables located in the same schema with same data for the columns.We are working towards removing redundancy by merging the tables ...
0
votes
2answers
49 views

How to add Oracle constraint to below tables

I have three tables: A {op_id, op_name, .} B {b_id, op_id, supplier_id, .} C {c_id, op_id, op_id2, supplier_id, relation, .} Table B and C have op_id which is foreign key from table A. In table A ...
2
votes
4answers
230 views

Can Foreign Key be null?

In our database project we have a table Sale that has an primary key and two exclusive foreign keys: Vehicle_ID and Piece_ID . For example if we sell a vehicle we need Vehicle_ID as a foreign key ...
1
vote
1answer
139 views

Two primary key reference to a foreign key

In our database system, we have student and personnel fields. They have PersonnelCardId and StudentCardId and we made them primary key. Then we have a payment device which holds cardID and we declared ...
1
vote
1answer
80 views

Creating a table with a foreign key

Hey all I'm trying to create a table that contains a Foreign Key, and for some reason I am getting an error. The error says 00907. 00000 - "missing right parenthesis" which is odd because I don't ...
0
votes
2answers
90 views

Oracle: Trouble creating two composite keys

One of my tables has a composite key comprised of three foreign keys (order_no, product_code and product_size). In the table where Product_size is the primary key I want to have a composite key ...
1
vote
1answer
61 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
2answers
127 views

Referencing one column of a composite primary key as a foreign key

In the table A, I've got a composite of 3 fields as a primary key and in the table B I've got one of the composite (which is not unique). I'd like to reference with the table A to ease the delete ...
0
votes
3answers
928 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 ...
1
vote
1answer
388 views

Can only one foreign key reference a primary key?

When creating a table and a database in do the foreign keys need to be unique? For example Table: Manifest Manifest_Barcode - PK Vehicle_reg - FK weight description Table: Vehicle vechicle_reg - ...
0
votes
1answer
71 views

Do I need to populate a foreign key when creating it?

When creating a foreign key in SQL developer do I need to put the same data in the foreign key that's used from the second table? for example: Table 1 - Driver PK - Driver_ID FK - REG Name address ...
2
votes
1answer
172 views

Oracle composite key deletion very slow

I have one table with a composite key (REGION) and another table (CITY) that references that table. Inserts, queries, and individual deletions work quickly. The problem is that when I try to ...
0
votes
0answers
18 views

Duplicate the rows using reference keys

I have a table database_list such as DB_ID (Sequence) NUMBER (PK) Database_NAME VARCHAR2 DATALINK_NAME VARCHAR2 DATABASE_TYPE VARCHAR2 ORIGINAL_DB_NAME VARCHAR2 PRIMARY_DB_ID ...
0
votes
2answers
891 views

Oracle : Autopopulate foreign key if parent table referenced column has values

This could be dumb question but somehow I am not able to get around it. I have the tables status and logs, both tables have jobId column. jobId is generated based on sequence and so I want to add ...
1
vote
1answer
324 views

how to upgrade an existing column to a foreign key using sql query?

I have a oracle table A which contains a column A.a which used to store an attribute of the table. It is a big table with data. Now the semantic requirement of attribute A.a needs to develop into ...
0
votes
1answer
290 views

Oracle: Errors Creating A Table With A Foreign Key

I'm new to Oracle. I'm trying to create a table with a foreign key, but I keep getting the cryptic error message: ORA-00907: missing right parenthesis for: CREATE TABLE purchase_history ( ...
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
1answer
253 views

Oracle - Cannot create new FK on existing table

I'm convinced I must be doing something incredibly stupid, as it can't be this hard to add a new foreign key to an existing table. However, I'm still stuck. Here's what I'm doing. First, I created ...
1
vote
2answers
5k views

Syntax error: missing expression (ORA-00936)

I have 2 tables, Facilities and Services. CREATE TABLE Facilities ( facility_id NUMBER(2) NOT NULL, facility_name VARCHAR2(20) NOT NULL, CONSTRAINT pk_facil_id PRIMARY KEY (facility_id) ); CREATE ...
0
votes
2answers
62 views

Referencing foreign keys across different users

I'm referencing a key that is part of another user: Example: create table emp ( name char(10) , empid char(10) , dob date , phone char(14) , primary key(empid) , ...
0
votes
2answers
53 views

Omitting columns of parent-table when creating Foreign Key

To create a Foreign Key in Oracle, some times I see CONSTRAINT FK_Supplier FOREIGN KEY (Supplier_id) REFERENCES Supplier(Supplier_id) But, some other times, I see this CONSTRAINT FK_Supplier ...
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 ...
0
votes
3answers
231 views

Cascading rows copy in Oracle

I have exactly the same problem as this one except i am running on Oracle and not SQL-Server. I have a structure like this : [Polygons] IdPolygon (Primary Key) VertexA VertexB VertexC ...
3
votes
2answers
448 views

Oracle foreign key execution plan?

Consider the following (simplistic) situation: CREATE TABLE PARENT ( PARENT_ID INT PRIMARY KEY ); CREATE TABLE CHILD ( CHILD_ID INT PRIMARY KEY, PARENT_ID INT NOT NULL, FOREIGN KEY ...
5
votes
1answer
1k views

Does Oracle automatically create a secondary index for FOREIGN KEY columns?

I'm currenly developing on Oracle. I have several tables for which I defined FOREIGN KEY constraints. I have already read this SQL Server-oriented and this MySQL-oriented questions but I could find ...
1
vote
2answers
2k views

Oracle table referencing a table from another schema

I'm having some trouble understanding what's possible and what's not possible in Oracle when it comes to multi-schema setups. Let's say I have two schemata A and B: -- with user SYS connect as SYSDBA ...
0
votes
2answers
570 views

Nested table primary and foreign key in Oracle

I'm trying to add a primary and foreign key to a nested table, struggling to know how. This is what I have; create or replace type profile as object ( id VARCHAR2(10), --- Suppose to be Primary Key ...
2
votes
1answer
959 views

Oracle - referential integrity with multiple types of data

I'm working on a set of database tables in Oracle and trying to figure out a way to enforce referential integrity with slightly polymorphic data. Specifically, I have a bunch of different ...
2
votes
2answers
3k views

How to enforce a constraint of foreign key on columns of same table in SQL

While entering values in the following table... employee: empid number, manager number (must be an existing employee)
0
votes
1answer
74 views

integrity constraint in Oracle

Suppose that a table named SuplProd has the columns supplier and product and two entries: (Sony Ericcson, Xperia) and (Apple, iPhone). I would like to create a table named Orders with columns ...
0
votes
1answer
67 views

get references table name and table column

I want to create query that result like this : column_name, constraint_name, constraint_type, referenced_table_name, referenced_column_name but I got a problem when build the ...
1
vote
2answers
1k views

How to drop an inline foreign key in Oracle-SQL using ALTER TABLE?

create table supplier( . . . city varchar2(16) references city(city_name) ); What's the correct query? alter table suppliers modify city varchar2(16);
2
votes
1answer
157 views

Constraints / Foreign keys information in Oracle

I have to get the Table and Column name of the Foreign keys on Oracle, can anybody confirm the following statement? SELECT a.table_name AS TableWithForeignKey, b.column_name AS ForeignKeyColumn ...
1
vote
2answers
153 views

SQL not allowing foreign key if it's a multiple candidate key?

Is it allowed in SQL to have a foreign key that is not a primary key but a (multiple) unique key? To be specific: [Table 1] CREATE TABLE Session_Record( c_id CHAR (3) NOT NULL REFERENCES ...
2
votes
2answers
201 views

Oracle & making a reference to ALL_USERS(USERNAME)

So i need to do a mapping from a Employee table (idEmployee, name, etc..) to a real user with a account created. I decided to add a table Mapping_Employee_User(idEmployee, userName) like below CREATE ...

1 2