[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

07/19/2005 at 11:18AM PDT, ID: 21497040
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

Problem with Insert statement?

Asked by mathieu_cupryk in Microsoft Visual Basic.Net

Tags: constraint, insert, cannot

CREATE TABLE [TransOverride] (
      [Policy_Nbr] [varchar] (7) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
      [Trans_CodeOrig] [varchar] (6) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
      [Trans_Eff_Date] [datetime] NOT NULL ,
      [Override_Code] [varchar] (2) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
      [NR_CodeOvr] [varchar] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
      [Trans_CodeOvr] [varchar] (6) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
      [CreatedDate] [datetime] NOT NULL CONSTRAINT [DF__TransOver__Creat__70A8B9AE] DEFAULT (getdate()),
      [CreatedUID] [nvarchar] (48) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
      [ModifiedDate] [datetime] NOT NULL CONSTRAINT [DF__TransOver__Modif__719CDDE7] DEFAULT (getdate()),
      [ModifiedUID] [nvarchar] (48) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
      [Plan_Year] [int] NOT NULL CONSTRAINT [DF__TransOver__Plan___56757D0D] DEFAULT (2004),
      CONSTRAINT [cnTransOverride_PK] PRIMARY KEY  CLUSTERED
      (
            [Policy_Nbr],
            [Trans_CodeOrig],
            [Trans_Eff_Date]
      )  ON [PRIMARY] ,
      CONSTRAINT [cnTransOverride_NR_CodeOvr_CK] CHECK ([NR_CodeOvr] = '' or ([NR_CodeOvr] = 'R' or [NR_CodeOvr] = 'N')),
      CONSTRAINT [cnTransOverride_Override_Code_CK] CHECK ([Override_Code] = '' or ([Override_Code] = 'OT' or ([Override_Code] = 'AU' or ([Override_Code] = 'MS' or ([Override_Code] = 'EN' or ([Override_Code] = 'AO' or [Override_Code] = 'AC'))))))
) ON [PRIMARY]
GO


This is my table however I only want to insert several attributes.

 strsql = "UPDATE [CCFinSol].[dbo].[TransOverride] SET " & "Policy_Nbr='" & txtPolicyNumber.Text & "',Trans_CodeOrig='" & cmbOriginalTransCode.Text & "', Trans_Eff_Date='" & DateEditTransEff.Value & "', Override_Code='" & cmbOverrideAction.Text & "', NR_CodeOvr='" & cmbOverrideNR.Text & "', Trans_CodeOvr='" & cmbOverrideTransactionCode.Text & "', Plan_Year='" & txtPlanYear.Text & "'"
           

System.Data.SqlClient.SqlException: Violation of Primary Key constrait 'cnTransOveride_PK'.
Cannot insert duplicate key in object 'TransOveride'. The statement has been terminated.
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at CCTransOverride.EditForm.DoSave() in
C:\Documents and Settings\mcupryk\My Documents\Visual Studio Projects\CCFinSol\CCTransOverride\EditForm.vb:line 515

What should I do?

 
Loading Advertisement...
 
[+][-]07/19/05 11:23 AM, ID: 14478033

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Microsoft Visual Basic.Net
Tags: constraint, insert, cannot
Sign Up Now!
Solution Provided By: toddhd
Participating Experts: 1
Solution Grade: B
 
 
 
Loading Advertisement...
20091111-EE-VQP-91