The Hassles of Travel
As he prepares for a trip across the Atlantic, Steve Jones talks about some things he doesn't like about travel.
2009-01-14
58 reads
As he prepares for a trip across the Atlantic, Steve Jones talks about some things he doesn't like about travel.
2009-01-14
58 reads
As he prepares for a trip across the Atlantic, Steve Jones talks about some things he doesn't like about travel.
2009-01-14
71 reads
As he prepares for a trip across the Atlantic, Steve Jones talks about some things he doesn't like about travel.
2009-01-14
64 reads
There are times that you do not want indexes to be updated and used. Brian Knight shows how you can accomplish this with a new SQL School video.
2009-01-13
3,281 reads
How to Extract Error Description in SQL Server 2000 based on Error Number
2009-01-13
7,960 reads
Don Schlichting examines several SQL Server 2008 grouping functions including GROUP BY, GROUPING SETS, CUBE, and ROLLUP. In addition, he demonstrates how to use SUM and COUNT in a WHERE clause after rows have been grouped.
2009-01-13
3,724 reads
Steve Jones talks about the lack of a big payday for tech workers. Not that most of us were expecting one.
2009-01-13
142 reads
Steve Jones talks about the lack of a big payday for tech workers. Not that most of us were expecting one.
2009-01-13
448 reads
Steve Jones talks about the lack of a big payday for tech workers. Not that most of us were expecting one.
2009-01-13
162 reads
T-SQL scripts and stored procedures don’t produce their PRINT statements and RAISERROR output in a way that keeps you informed of the code’s progress. You usually have to wait until the procedure is complete before seeing messages. How can I get insight into the code's progress?
2009-01-13
2,944 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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....
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