Security Isn’t Easy - WaterOx Consulting
But SQL Server Can Help Did you know SQL Server has a...
The post Security Isn’t Easy appeared first on WaterOx...
2015-07-22
512 reads
But SQL Server Can Help Did you know SQL Server has a...
The post Security Isn’t Easy appeared first on WaterOx...
2015-07-22
512 reads
**Information current as of 7/22/2015**
There’s lots of exciting news this week with Power BI so expect several short blog posts...
2015-07-27 (first published: 2015-07-22)
3,753 reads
Omaha’s next SQL Saturday event is going to be held on August 15th at the University of Nebraska – Omaha’sMammel Hall...
2015-07-22
629 reads
PASS HEADQUARTERS:
The PASS Performance Virtual Chapter’s 2015 Performance Palooza is
tomorrow starting at 10AM Central Time! This event will feature...
2015-07-22
1,225 reads
Originally appearing in my monthly column at Database Trends & Applications magazine. In my last column, available HERE, I described some of the findings contained in an intriguing new...
2015-07-22
16 reads
Originally posted on Clustering For Mere Mortals:
If you set up a multisite cluster (nodes in different subnets), you will...
2015-07-22
764 reads
Last year Kirsten Benzel(b/t) and Argenis Fernandez(b/t) did this amazing thing. They organized a campaign and raised over $13,000 for...
2015-07-22
691 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-07-29 (first published: 2015-07-22)
1,785 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-07-22
40 reads
This is part of a series on how to take the Adventureworks database and bring it in line with modern...
2015-07-22
33 reads
By Steve Jones
It’s time for T-SQL Tuesday again and this is a great prompt to start...
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....
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