473,513 Members | 2,618 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

inserting data into a dependent table

Hello,

I have two tables, one is a list of activities, the other a list of
participants. I want to insert one record in the activities table and
then using its identity column as foreign key, I want to insert two or
more records into the participants table.

My problem is that I have no idea what foreign key to use when
inserting names into the participants table. How can I get hold of the
row's key or identity column, immediately after inserting a row into
the activity table?

Thanks in advance.

Ahmet
Jul 8 '08 #1
5 5680
dos360 wrote:
Hello,

I have two tables, one is a list of activities, the other a list of
participants. I want to insert one record in the activities table and
then using its identity column as foreign key, I want to insert two or
more records into the participants table.

My problem is that I have no idea what foreign key to use when
inserting names into the participants table. How can I get hold of the
row's key or identity column, immediately after inserting a row into
the activity table?
The best way is to do a "SELECT FROM INSERT"
CREATE TABLE T(pk INT GENERATED ALWAYS AS IDENTITY, c1 INT);

SELECT pk FROM NEW TABLE(INSERT INTO T(c1) VALUES 10);
PK
-----------
1

1 record(s) selected.

You can also play with the IDENTITY_VAL_LOCAL() function, but that means
an extra SQL statement.
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Jul 8 '08 #2
On Jul 8, 2:39 am, dos360 <vtam...@yahoo.comwrote:
Hello,

I have two tables, one is a list of activities, the other a list of
participants. I want to insert one record in the activities table and
then using its identity column as foreign key, I want to insert two or
more records into the participants table.

My problem is that I have no idea what foreign key to use when
inserting names into the participants table. How can I get hold of the
row's key or identity column, immediately after inserting a row into
the activity table?

Thanks in advance.

Ahmet
Try SELECT FROM OLD TABLE(INSERT INTO activities ...), you can read up
on it here: http://www.ibm.com/developerworks/db...dm-0411rielau/

Regards,
Miro
Jul 9 '08 #3
Thank you Serge,

It worked like a charm on my DB2 command editor, but not in my
program. Instead of returning one line with incremented identity
column contents, its returning zeros. At first one zero, then two
zeros, then three...

There were no errors in my sql statement so I thought, perhaps it
needs to be committed. So I went back to the Control Center and
discovered that my table T was still blank. Once I commit in the
command editor, I get a blank table T!

Sorry, I'm a little new to this.

Ahmet

On 8 Temmuz, 14:08, Serge Rielau <srie...@ca.ibm.comwrote:
dos360 wrote:
Hello,
I have two tables, one is a list of activities, the other a list of
participants. I want to insert one record in the activities table and
then using its identity column as foreign key, I want to insert two or
more records into the participants table.
My problem is that I have no idea what foreign key to use when
inserting names into the participants table. How can I get hold of the
row's key or identity column, immediately after inserting a row into
the activity table?

The best way is to do a "SELECT FROM INSERT"
CREATE TABLE T(pk INT GENERATED ALWAYS AS IDENTITY, c1 INT);

SELECT pk FROM NEW TABLE(INSERT INTO T(c1) VALUES 10);
PK
-----------
1

1 record(s) selected.

You can also play with the IDENTITY_VAL_LOCAL() function, but that means
an extra SQL statement.
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Jul 9 '08 #4
>I have two tables, one is a list of Activities, the other a list of Participants. I want to insert one record [sic: rows are not records] in the Activities table and then using its IDENTITY column [sic IDENTITY is not a column, but a property of the physical storage] as foreign key [sic: IDENTITY cannot be a key by definition], I want to insert two or more records [sic] into the Participants table.<<

Please post DDL so we don't have to guess about the schema, if you
want help. Here is a guess at a properly designed schema:

CREATE TABLE Activities
(activity_id INTEGER NOT NULL PRIMARY KEY
activity_name CHAR(15) NOT NULL,
etc.)

CREATE TABLE Participants
(participant_id INTEGER NOT NULL PRIMARY KEY,
participant_name CHAR(15) NOT NULL,
etc.);

Participation is a relationship and will needs its own table

CREATE TABLE Participation
(participant_id INTEGER NOT NULL
REFERENCES Participants (participant_id)
ON DELETE CASCADE
ON UPDATE CASCADE,
activity_id INTEGER NOT NULL
REFERENCES Activities (activity_id)
ON DELETE CASCADE
ON UPDATE CASCADE,
PRIMARY KEY (participant_id, activity_id),
etc.);
>My problem is that I have no idea what foreign key to use when inserting names into the Participants table. How can I get hold of the row's key or IDENTITY column [sic], immediately after inserting a row into the activity table? <<
That is the wrong question: you don't use IDENTITY and you don't make
an entity into an attribute. You use a relationship table. If you had
Books and Authors, you would not make a book an attribute of an author
-- it does not grow out of his chest, does it? You would have an
Authorship table.
Jul 9 '08 #5
Thank you Celko. I see your point, if I had an association table
called participation I would be able to generate more reports.
Actually, I was trying to do something much simpler. First the DDL

create table ahmet.activity
(act_no bigint generated always as identity,
act_date DATE NOT NULL, etc)

create table ahmet.act_participant
(part_act_no bigint generated always as identity,
part_act_no bigint, <<<< "primary key of activity table goes here"
part_act_salesrep char(40))

My idea was first to insert a row (why can't a say a record then?)
into the activity table, then get hold of its primary key (act_no) and
then using it as a foreign key, to insert as many participants into
the second table (act_participant).

Serge said "use a select from insert" but for some reason it only
works (returns incremented results) in the command editor and even
then the rows aren't actually inserted because the table remains
blank. In my Lotus Notes clients basic code, it doesn't even return
incremented keys.

Any suggestions? With or without a third association table?

Ahmet

On Jul 9, 6:44*pm, --CELKO-- <jcelko...@earthlink.netwrote:
I have two tables, one is a list of Activities, the other a list of Participants. I want to insert one record [sic: rows are not records] in the Activities table and then using its IDENTITY column [sic IDENTITY is not a column, but a property of the physical storage] as foreign key [sic: IDENTITY cannot be a key by definition], I want to insert two or more records [sic] into the Participants table.<<

Please post DDL so we don't have to guess about the schema, if you
want help. *Here is a guess at a properly designed schema:

CREATE TABLE Activities
(activity_id INTEGER NOT NULL PRIMARY KEY
*activity_name CHAR(15) NOT NULL,
*etc.)

CREATE TABLE Participants
(participant_id INTEGER NOT NULL PRIMARY KEY,
*participant_name CHAR(15) NOT NULL,
*etc.);

Participation is a relationship and will needs its own table

CREATE TABLE Participation
(participant_id INTEGER NOT NULL
* *REFERENCES Participants (participant_id)
* *ON DELETE CASCADE
* *ON UPDATE CASCADE,
*activity_id INTEGER NOT NULL
* *REFERENCES Activities (activity_id)
* *ON DELETE CASCADE
* *ON UPDATE CASCADE,
*PRIMARY KEY (participant_id, activity_id),
* etc.);
My problem is that I have no idea what foreign key to use when inserting names into the Participants table. How can I get hold of the row's key or IDENTITY column [sic], immediately after inserting a row into the activity table? <<

That is the wrong question: you don't use IDENTITY and you don't make
an entity into an attribute. *You use a relationship table. If you had
Books and Authors, you would not make a book an attribute of an author
-- it does not grow out of his chest, does it? *You would have an
Authorship table.
Jul 10 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
2003
by: simon | last post by:
Hi, I have two tables Table A = {ID, Item} Table B = {ID, IDA, subItem} Where ID auto increment. INSERT INTO TABLE_A ('items') values ('a')
3
6832
by: Joachim Klassen | last post by:
Hi all, first apologies if this question looks the same as another one I recently posted - its a different thing but for the same szenario:-). We are having performance problems when...
9
5314
by: Timm | last post by:
I have an ASP.NET 2.0 page with two DropDownLists. I am using declarative data binding wherever possible and trying to minimize the use of code. The list of values in DropDownList DDL2 should be...
1
5459
by: suslikovich | last post by:
Hi all, I am getting this error when insert values from one table to another in the first table the values are varchar (10). In the second they are datetime. The format of the data is mm/dd/yyyy...
3
4264
by: rcoco | last post by:
Hi, I want to share this problem. I have a datagrid that will help me Insert data into sql database. So I made a button On my form so that when I press the button a new row on datagrid should be...
1
2611
by: madhuxml82 | last post by:
Dear Forum Members, I have generated an XML Schema and a Table of XMLType referencing the XML Schema. Now When I am Inserting the Data into the Table. I am getting the Error 0RA-30937: Error is...
2
3058
by: AlexanderDeLarge | last post by:
Hi! I got a problem that's driving me crazy and I'm desperately in need of help. I'll explain my scenario: I'm doing a database driven site for a band, I got these tables for their discography...
2
2615
by: cluce | last post by:
I am trying to read a csv file with user info (username, password, email, address, city, zip, state, etc.) I am inserting the username, password, email into the aspnet_memberhsip table using the...
5
2145
by: rando1000 | last post by:
Okay, here's my situation. I need to loop through a file, inserting records based on a number field (in order) and if the character in a certain field = "##", I need to insert a blank record. ...
0
7257
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7157
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7379
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7535
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7098
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5682
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5084
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
1591
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
798
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.