Version 7.0.0.60 issue

jsreynolds1jsreynolds1 Posts: 82 Silver 1
edited December 30, 2016 2:45PM in SQL Prompt
Simple update statement on a single table, no joins, etc.

SQL Prompt underlines and refuses to validate columns "Comment", "InventoryID" and "StatusID".
It states, "The column X could not be resolved as a column with that name exists in multiple tables."
Those column names do exist in other tables in the database. First I've seen this error. I just updated from 7.0.0.40 to 7.0.0.60 today.

RHA8z22.png?1
    UPDATE  [InventoryHeader]
    SET     [StatusID] = 3,
            [PostedBy] = @PDSID,
            [PostedDate] = CURRENT_TIMESTAMP,
            [Comment] = ISNULL(@Comment, [Comment])
    FROM    [InventoryHeader]
    WHERE   [StatusID] = 2
            AND [InventoryID] = @InventoryID;

Comments

  • Aaron LAaron L Posts: 596 New member
    Hi John,

    Apologies, it looks like this was a knock on from a bug fix we added in 7.0.0.49 to qualify column names if they're ambiguous in an UPDATE statement. However it looks like the logic wasn't correct if the UPDATE statement was updating from the same table as its target.

    We think we've got a fix in the latest build which you can download from here.

    Thanks for reporting this!

    Aaron.
  • Aaron,

    I can confirm that the new build fixes the issue.

    Best,

    John
  • Aaron LAaron L Posts: 596 New member
    Hi John,

    Thanks for the confirmation! I'm glad that fixed it. Please do let us know if you have any other issues.

    Thanks,
    Aaron.
  • Hello!

    I have run into a similar problem (and I am on version 7.0.0.62) where the SQL Prompt complains: "... column could not be resolved as a column with that name exists in multiple tables...". Below is my query (slightly revised to protect the innocent):

    UPDATE TableA
    SET Column1 = ( SELECT Column1
    FROM TableB
    )
    WHERE Column1 IS NULL
    AND MyType = 'A';
  • Upgrading to the latest version (7.3.0.775) solved this problem for me.
Sign In or Register to comment.