Fast Starts
We are barely under way with the New Year and it is shaping up to be a busier year already....
2013-01-08
997 reads
We are barely under way with the New Year and it is shaping up to be a busier year already....
2013-01-08
997 reads
Hey Friends,
Today I am here with some concept task . How a search work in SharePoint, but for a search to...
2013-01-08
578 reads
In the past couple weeks, I’ve gotten a couple reports of issues with sp_indexanalysis. The update today fixes those issues....
2013-01-08
756 reads
The Master Data Management (MDM) hub is a database with the software to manage the master data that is stored in...
2013-01-08
8,834 reads
A common requirement for dealing with large datasets is the ability to split the data into smaller blocks to help...
2013-01-08
1,023 reads
One of our customers is implementing a very large consolidation project in which they enable users to create their own...
2013-01-08
315 reads
It’s been a while since I mentioned anything about the SQL Saturday in Fargo. So I thought I would let...
2013-01-08
580 reads
Lets start New Year with a very simple yet useful topic.
I am a big fan of out of box reporting...
2013-01-08
1,266 reads
This post is part of the T-SQL Tuesday Meme, this month hosted by Jason Brimhall. His chosen theme, to come up with...
2013-01-08
1,561 reads
I often get hung up in the whirlwind of life,
and one of the things that seems to slip my schedule,...
2013-01-08
1,844 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