SQL Server Virtualisation and Consolidation
SQL Server Virtualisation and Consolidation: Hands-On
Come and join me in London this December for a three day course covering the...
2012-10-02
629 reads
SQL Server Virtualisation and Consolidation: Hands-On
Come and join me in London this December for a three day course covering the...
2012-10-02
629 reads
I have been doing interviews for Pragmatic works for the past few years and I have come across quite a...
2012-10-02
2,780 reads
I work with a reasonably large team of DBAs. There are 9 of us and we support not only 70+...
2012-10-02
1,206 reads
In theory we cannot backup the log of a database which is in Simple recovery model, however there is a...
2012-10-01
1,105 reads
I told people in New York at SQL in the City that I’d post some resources on the blog from...
2012-10-01
1,286 reads
SQL Server Agent jobs are crucial to any SQL Server environment, as they are used for scheduling and performing critical...
2012-10-01
1,345 reads
How many of you out there get approval to go to the PASS Summit (YES!) but then get denied the...
2012-10-01
636 reads
Come and join me live in New York this coming December where I will be presenting Learning Tree’s2109 SQL Server...
2012-10-01
841 reads
October already. The PASS Summit is coming soon and we’re entering the time of the year that many of us...
2012-10-01
609 reads
The Omaha SSUG’s sister group, the Lincoln SSUG, is hosting a SQL Saturday this coming Saturday, October 6th, at Avery...
2012-10-01
699 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