Power BI v2 is GA
I guess in the age of rapid development and releases the fact of General Availability of the Power BI v...
2015-07-29
1,071 reads
I guess in the age of rapid development and releases the fact of General Availability of the Power BI v...
2015-07-29
1,071 reads
Alternate Title: I’m traveling a bunch. Let’s get together and talk.
A bunch of trips and presentations coming up, so I...
2015-07-29
981 reads
This year’s PASS Summit will end on Oct 30, which is just before Halloween in the US. I’m sure lots...
2015-08-05 (first published: 2015-07-29)
1,913 reads
Originally appearing in my monthly column at Database Trends & Applications magazine. In the first of this three-part series, I described some of the findings contained in an intriguing...
2015-07-29
20 reads
I love keyboard shortcuts. I recently mapped a keyboard shortcut to Change Connection and thought I would share some of...
2015-07-29
1,279 reads
Without a doubt, the most versatile data flow tool in the SSIS arsenal is the script component. This control grants...
2015-08-05 (first published: 2015-07-29)
2,900 reads
I wrote recently about my philosophy for service accounts, and wanted to add a few more thoughts.
Security is important for...
2015-07-28
1,517 reads
Get a better nameDefine my personal goals for the courseI won’t be sharing these with you. I may share them...
2015-08-07 (first published: 2015-07-28)
1,896 reads
Would You Pay to Wear Jeans at Work turned out to be popular piece when posted a couple weeks back. The...
2015-07-28
633 reads
Working in a development environment, I botched up a restore. After this restore attempt to overwrite my database with the...
2015-08-04 (first published: 2015-07-28)
3,132 reads
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....
A RAG pipeline that answers questions in the demo is not the same thing...
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