Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
SQL error -803

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
ranga_subham
Currently Banned

Active User


Joined: 01 Jul 2005
Posts: 59

PostPosted: Fri Jul 01, 2005 3:19 pm    Post subject: SQL error -803
Reply with quote

How to solve the -803 SQL return code by a COBOL-DB2 program?
Back to top
View user's profile Send private message
References
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Fri Jul 01, 2005 3:36 pm    Post subject: Re: SQL error -803
Reply with quote

Basically its a violation of UNIQUE constraint.

Examine the definitions for UNIQUE INDEX in the INDEX SPACE 'indexspace name' to determine the uniqueness constraint imposed.
Please refer to SYSIBM.SYSINDEXES for the 'indexspace name' and the associated 'index name'. For an UPDATE statement, verify that the specified operation is consistent with the uniqueness constraint. If this does not indicate the error, examine the object table to determine the cause of the problem.
For an INSERT statement, examine the object table to determine which values violate the uniqueness constraint. If the INSERT statement contains a subquery, match the contents of the table addressed by the subquery and the contents of the object table to determine the cause of the problem.
For a DELETE statement, examine the index key columns in the table that defines the index. These columns contain a foreign key, which when set NULL on a cascade delete from the object table, causes the duplicate values.

Regards,

Priyesh.
Back to top
View user's profile Send private message
jagadeshdvn

New User


Joined: 27 Jun 2005
Posts: 12
Location: East Hartford

PostPosted: Thu Jul 07, 2005 10:57 pm    Post subject:
Reply with quote

Just to add some more info on -803:

-803 AN INSERTED OR UPDATED VALUE IS INVALID BECAUSE THE INDEX IN INDEX
SPACE indexspace-name CONSTRAINS COLUMNS OF THE TABLE SO NO TWO
ROWS CAN CONTAIN DUPLICATE VALUES IN THOSE COLUMNS. RID OF EXISTING
ROW IS Xrid

Explanation: The table that is the object of the INSERT or UPDATE
operation is constrained (by UNIQUE INDEX in the INDEX SPACE
indexspace-name to have unique values in certain columns. Completion of
the requested INSERT or UPDATE would result in duplicate values occurring
in row rid.

If a view is the object of the INSERT or UPDATE statement, the table that
defines the view is constrained. The update might also be caused by a
DELETE operation of a parent row that cascades to a dependent row with a
delete rule of SET NULL.

System Action: The INSERT, UPDATE, or DELETE statement cannot be
executed. The object table is unchanged.
Back to top
View user's profile Send private message
vibhor_chodha

New User


Joined: 08 Jul 2005
Posts: 2

PostPosted: Fri Jul 08, 2005 3:27 pm    Post subject: Re: SQL error -803
Reply with quote

The SQL - 803 error occurs on the violation of a UNIQUE constraint.

The first thing then, that comes to mind is to examine the definitions for UNIQUE INDEX in the INDEX SPACE to determine the uniqueness constraint imposed.

Please refer to SYSIBM.SYSINDEXES for the indexspace. For an UPDATE statement, verify that the specified operation is consistent with the uniqueness constraint.
Back to top
View user's profile Send private message
ranga_subham
Currently Banned

Active User


Joined: 01 Jul 2005
Posts: 59

PostPosted: Sat Jul 16, 2005 3:13 pm    Post subject: Thanks.
Reply with quote

Thank you people.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1