Posts
Sort by recent activity
File Naming Conventions
Our company is moving away from SQL Server, meaning we can no longer use our beloved SSDT/DacPac deployments. I'm thinking of moving to Flyway but I don't understand the file naming. I'm assuming ...
Tab History Slow
The tab history feature is great, but has anyone noticed it tends to run a little slow. I'm not sure if it's just me or if an update has caused the slowness.
Error when formatting in SQLCMD mode
SQL Prompt is changing this::SETVAR MyVar "Foo":SETVAR MyVar "Foo"-- SQL Prompt formatting off
INSERT INTO #MyTable
(
Col1
)
VALUES
('1')
-- SQL Prompt formatting on
</code>:SETVAR M...
Bug: Minor error formatting CTE
Not sure if this is the venue to report bugs, but I've run across an odd one.
Here's my query:
PRINT 'Why is comment moved?';
--Here is my comment
;WITH cteBar
AS (SELECT *
FROM myTable
)
S...