key column information is insufficient or incorrect

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dinu

    key column information is insufficient or incorrect

    Dear Friends,
    I have table contain 2000 out of those some are
    duplicate when i select duplicate records by using Enterprise Manager
    and make modification to one of those duplicate records the following
    message flashes/display.

    key columen information is insufficient or incorrect.Too many rows were
    affected by update

    pls suggest what is this and how to solve this problem

    Thanks in advance

    Dinesh Patwal

  • David Portas

    #2
    Re: key column information is insufficient or incorrect

    dinu wrote:
    Dear Friends,
    I have table contain 2000 out of those some are
    duplicate when i select duplicate records by using Enterprise Manager
    and make modification to one of those duplicate records the following
    message flashes/display.
    >
    key columen information is insufficient or incorrect.Too many rows were
    affected by update
    >
    pls suggest what is this and how to solve this problem
    >
    Thanks in advance
    >
    Dinesh Patwal
    Before you can edit the data in Enterprise Manager you need to add a
    unique constraint or unique index. To facilitate that it may help to
    use SELECT DISTINCT to eliminate duplicates and copy the data to a new
    table. It rather depends on just how you want to eliminate the
    duplicate data. You can Google for lots of previous posts on this topic
    in this group and in the microsoft.publi c.sqlserver groups.

    --
    David Portas, SQL Server MVP

    Whenever possible please post enough code to reproduce your problem.
    Including CREATE TABLE and INSERT statements usually helps.
    State what version of SQL Server you are using and specify the content
    of any error messages.

    SQL Server Books Online:

    --

    Comment

    Working...