SSDT-BI and Visual Studio Online
Recently I had to create a new business intelligence project at a client. However, there was no source control present....
2015-08-07
2,552 reads
Recently I had to create a new business intelligence project at a client. However, there was no source control present....
2015-08-07
2,552 reads
In just one week, I’ll be traveling west to Omaha to speak at SQLSaturday there. It’s been a while since...
2015-08-07
404 reads
Have never really played around with the option: SET NOEXEC ON
Turns out this can be a helpful way to validate...
2015-08-07
3,621 reads
In late June last month, the Microsoft Power BI team released the Microsoft Power BI Analysis Services Connector. The Power...
2015-08-07
1,129 reads
With a Gentle intro done on Hekaton - In Memory tables, let us continue exploring further. Today, we will quickly create a database...
2015-08-06
558 reads
At Redgate Software, we have a progression of the stages of a database development pipeline. These are the various ways...
2015-08-17 (first published: 2015-08-06)
2,125 reads
AlwaysOn technology in MS SQL Server is designed to increase the availability of your database, it is another step toward...
2015-08-12 (first published: 2015-08-06)
16,894 reads
If you follow the Twitter account for SQL PASS, you probably noticed that they are actively promoting individual Summit 2015 speakers....
2015-08-11 (first published: 2015-08-06)
1,806 reads
I was playing around with some XML lately, and had to load a file that looked like this::
I ran a...
2015-08-06
1,646 reads
The Analytics Platform System (APS), which is a renaming of the Parallel Data Warehouse (PDW), has just released an appliance update (AU4),...
2015-08-06
1,129 reads
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...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
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