Comments
Sort by recent activity
Thanks James! / comments
Thanks James!
Thanks Aaron, it works like a charm. / comments
Thanks Aaron, it works like a charm.
No David, that's not what I want. Basically "inline execute" converts something like DECLARE @input INT = 10;
DECLARE @output INT;
EXEC sys.sp_executesql
N'SELECT @output = @input',
N'@input INT, @output INT out',
@input = @input,
@output = @output OUT;
To DECLARE @input1 INT;
SET @input1 = @input;
SELECT @output = @input1
What I want is a feature to wrap a piece of code in sp_executesql.
Thanks and happy Thanksgiving! / comments
No David, that's not what I want. Basically "inline execute" converts something likeDECLARE @input INT = 10;
DECLARE @output INT;
EXEC sys.sp_executesql
N'SELECT @output = @input',
N'@inpu...
Yes Dave, I've upvoted. Thanks. / comments
Yes Dave, I've upvoted. Thanks.
Thank you very much Ali! I can't wait to try the new beta release! [image] / comments
Thank you very much Ali! I can't wait to try the new beta release!
The download link for 6.6.0.189 beta does not work for me here. Could you help to check please? / comments
The download link for 6.6.0.189 beta does not work for me here. Could you help to check please?
Added to the uservoice site. / comments
Added to the uservoice site.
Aaron, is it possible to add an option like "add semicolons when formatting code"? It's not a big deal but it will make it a little easier to get a consistent result. / comments
Aaron, is it possible to add an option like "add semicolons when formatting code"? It's not a big deal but it will make it a little easier to get a consistent result.
Thanks. / comments
Thanks.
Thanks.
When I check "Indent Contents", the "Sample SQL" actually indents the contents, but the "Current Query" does not get indented.
In order to indent my code, I have to uncheck "Indent Contents". That's a little confusing. Is this a bug? / comments
Thanks.
When I check "Indent Contents", the "Sample SQL" actually indents the contents, but the "Current Query" does not get indented.
In order to indent my code, I have to uncheck "Indent Contents...