Activity overview
Latest activity by tgburgin
Looks like it was SSMSBoost conflicting with SQL Prompt. I've manually amended it. Thanks for the fix. / comments
Looks like it was SSMSBoost conflicting with SQL Prompt. I've manually amended it. Thanks for the fix.
Oh, it still doesn't work for me on 9.5.10.10741. / comments
Oh, it still doesn't work for me on 9.5.10.10741.
@Russell D Any news on this being fixed? / comments
@Russell D Any news on this being fixed?
Shift+F5 doesn't work in SSMS 18.0 with SQL Prompt 9.5.0.9311
Expected outcome: Current statement is runActual outcome: Current statement is selected
@Alex B confirmed as fixed in 9.4.9, thank you! / comments
@Alex B confirmed as fixed in 9.4.9, thank you!
Great news, thanks @Alex B / comments
Great news, thanks @Alex B
Ah ha, it's just doing the replace on the line above. If you test: DECLARE @Batch_ID SMALLINT, @Test BIGINT, @TotalBalance MONEY It goes to: DECLARE @Batch_ID SMALDECIMAL(19, 4) @Test BIGINT,
@TotalBalance MONEY Replacing the characters directly above the MONEY declaration.
/ comments
Ah ha, it's just doing the replace on the line above.If you test:DECLARE @Batch_ID SMALLINT, @Test BIGINT, @TotalBalance MONEYIt goes to:DECLARE @Batch_ID SMALDECIMAL(19, 4) @Test BIGINT,
...