SQL Server on VMware Workshop at VMware
This past week I was fortunate enough to attend a three-day special session at VMware Corporation’s corporate campus in Palo Alto,...
2014-09-17
1,037 reads
This past week I was fortunate enough to attend a three-day special session at VMware Corporation’s corporate campus in Palo Alto,...
2014-09-17
1,037 reads
I’ve got most of the messages up through Sep 27th drafted. Still need to tweak a couple, but close to...
2014-09-16
550 reads
It’s time for Devconnections again, and I’m back in Las Vegas for the conference. This is a great conference if...
2014-09-16
723 reads
Verwaltungs-Data Warehouse Datensammler & AlwaysOn Hochverfügbarkeitsgruppen
(EN)
This time, we are dealing with the „MDW“, short for Management Data Warehouse,(msdn.microsoft.com/en-us/library/bb677306.aspx), which I like...
2014-09-16
1,270 reads
I’m putting on a pre-conference seminar (also known as a pre-con) at the PASS Summit this year. I’m really honored...
2014-09-16
615 reads
We crossed the $10k mark for the Argenis Without Borders campaign, meaning that Brent, Grant, Adam, Gail, and myself will...
2014-09-16
828 reads
SQLSaturday
is a full day FREE training event for SQL Server
professionals and those wanting to learn more about SQL Server and network with
the SQL Server...
2014-09-18 (first published: 2014-09-16)
6,368 reads
More good news! I will be speaking on SQLSaturday #311 Bulgaria.
If you read this blog and will attend the event,...
2014-09-16
528 reads
Five years ago the term “cloud” was still a buzzword, and there was a lot of uncertainty and misconception around...
2014-09-16
637 reads
This is part of a series of tips for speakers on how to make your presentations better.
I’ve given around 30...
2014-09-16
697 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
By alevyinroc
T-SQL Tuesday is a monthly blog party hosted by a different community member each...
How I used AI for this postChatGPT to generate images based on info specifically...
Bonjour à tous, La semaine dernière, nous avons effectué une mise à niveau de...
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