New FileTable Questions Posted on SQLServerCentral
I’m late posting this, I wrote six questions after doing a refresh of what I knew (or should have known) about...
2015-11-10
447 reads
I’m late posting this, I wrote six questions after doing a refresh of what I knew (or should have known) about...
2015-11-10
447 reads
It’s almost Thanksgiving time again! Let’s see, what am I thankful for? T-SQL Tuesday! Someone else get’s to pick a...
2015-11-12 (first published: 2015-11-10)
4,852 reads
Well I’m not
a data modeler, nor do I play one in the corporate world. But it is TSQLTuesday No. 72,...
2015-11-10
2,469 reads
This month T-SQL Tuesday is hosted by Mickey Steuwe (blog/@SQLMickey) and her topic of choice is “Data Modeling Gone Wrong.”
(If...
2015-11-12 (first published: 2015-11-10)
1,867 reads
[read this post on Mr. Fox SQL blog] Continuing on with my Partitioning post series, this is part 6. The partitioning includes several major components of work (and can be linked...
2015-11-09
18 reads
[read this post on Mr. Fox SQL blog]
Continuing on with my Partitioning post series, this is part 6.
The partitioning includes several major...
2015-11-09
1,198 reads
I’ve written a few posts on the Redgate Software blog to try and show how I see the DLM model,...
2015-11-09
583 reads
It’s Monday time for this week’s blog and twitter round-up for last week. If you haven’t already, follow me on...
2015-11-09
318 reads
Last week’s PASS Summit conference in Seattle, WA was incredible (as always). It’s my favorite tech event of the year,...
2015-11-09
456 reads
SQL Server Community Technology Preview 3 has been released some days ago.
The SQL Server team added a lot of features...
2015-11-09
664 reads
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
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...
Comments posted to this topic are about the item Looking for New Blood
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