Choosing a Development IDE for Sql Development
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
893 reads
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
893 reads
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
43 reads
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
53 reads
In this series of posts I am going to talk about what it is we need to do, as Sql developers and DBAs to improve our working practices so...
2015-02-12
5 reads
In this series of posts I am going to talk about what it is we need to do, as Sql...
2015-02-12
332 reads
In this series of posts I am going to talk about what it is we need to do, as Sql...
2015-02-12
44 reads
In this series of posts I am going to talk about what it is we need to do, as Sql...
2015-02-12
51 reads
**Update** I have noticed that these cmd files are missing from recent ssdt builds, to enable logging see Kevin's comment:
http://blogs.msdn.com/b/ssdt/archive/2014/07/15/sql-server-data-tools-ju…
**/update I was helping someone get a deployment filter working...
2015-02-05
18 reads
**Update** I have noticed that these cmd files are missing from recent ssdt builds, to enable logging see Kevin’s comment:
http://blogs.msdn.com/b/ssdt/archive/2014/07/15/sql-server-data-tools-ju…
**/update...
2015-02-05
138 reads
**Update** I have noticed that these cmd files are missing from recent ssdt builds, to enable logging see Kevin’s comment:
http://blogs.msdn.com/b/ssdt/archive/2014/07/15/sql-server-data-tools-ju…
**/update...
2015-02-05
75 reads
How I used AI for this postChatGPT to generate images based on info specifically...
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
A RAG pipeline that answers questions in the demo is not the same thing...
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers