Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hi..

Former Member
0 Likes
379

how can i insert a dupliacte row in the database table?

thanks,

vijaya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
359

HI Vijaya,

Insertion in the database table deppends on the Primary key of the table. You can not insert an new row in a table if an entry with the same primary already exists.

Regards,

Manish

3 REPLIES 3
Read only

Former Member
0 Likes
360

HI Vijaya,

Insertion in the database table deppends on the Primary key of the table. You can not insert an new row in a table if an entry with the same primary already exists.

Regards,

Manish

Read only

gopi_narendra
Active Contributor
0 Likes
359

insertion of duplicates into a table is purely based on the primary key.

You can not insert duplicate values into a table.

Regards

- Gopi

Read only

Former Member
0 Likes
359

hi lakshmi,

All the entries you insert into the database will get stored depending upon the keyfields,

so it is not possible to enter duplicate entries.