Power BI Custom Visuals Contest Round-up
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
405 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
405 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
849 reads
tl,dr; We’re raising money for Doctors without Borders. Donate and a few of us will dress up at the Summit....
2015-09-22
685 reads
It’s a question which has come up a couple of times. If a subscriber of a transactional replication publication becomes...
2015-09-22
1,138 reads
You’ve heard about it for some time now, and you finally got the gumption to ask your boss if the...
2015-09-22
330 reads
You’ve heard about it for some time now, and you finally got the gumption to ask your boss if the...
2015-09-22
543 reads
Predicates are a significant component within the Extended Events Engine. This article discusses one of the pieces of the puzzle of predicates - comparison operators - also known as...
2015-09-22
25 reads
In the previous installment, I began covering the topic of predicates. In that article I demonstrated that there are multiple types of...
2015-09-22
837 reads
Let’s say you have a table that records transactions along with the date of when the transaction took place. Wait,...
2015-09-22
5,207 reads
There has been some really useful blogs and articles posted over the last week or so, this is my top...
2015-09-22
531 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