Comments
2 comments
-
Hi @Glenn,
Thank you for reporting this. I've managed to reproduce the problem locally and I've created a bug (reference: SP-6637) to track it.
Best regards,
Frederico -
Hi @Glenn,
We have released SQL Prompt 8.2.4.2825 which resolves this issue.
You can update here:
http://download.red-gate.com/checkforupdates/SQLPrompt/SQLPrompt_8.2.4.2825.exe
Thanks for reporting!
Best,
Michael
Add comment
Please sign in to leave a comment.
Sample code:
DECLARE @work TABLE( key1 VARCHAR(4)
, key2 VARCHAR(9)
, val1 VARCHAR(50)
, val2 VARCHAR(25),
PRIMARY KEY CLUSTERED( key1, key2 ));
CREATE TABLE #work ( key1 VARCHAR(4)
, key2 VARCHAR(9)
, val1 VARCHAR(50)
, val2 VARCHAR(25)
,
PRIMARY KEY CLUSTERED( key1, key2 ));