Windows 10 Upgrade on Surface Pro 3 – Sending email issue FIXED
I very rarely blogabout anything other than SQL Server but felt that with a lot of the SQL Community using...
2015-08-02
926 reads
I very rarely blogabout anything other than SQL Server but felt that with a lot of the SQL Community using...
2015-08-02
926 reads
Last month, I have requested my manager for an approval so that I can attend SQL Server Geeks Annual Summit...
2015-08-02
685 reads
It’s past time for the Monday blog and twitter round-up for last week, but better late than never (or not)....
2015-08-02
640 reads
I had a great time in my Beginning T-SQL presentation here at SQL Saturday Baton rouge! Here is the BeginningTSQL...
2015-08-01
771 reads
Every year at Pragmatic Works some coworkers, including consultants, marketing staff, support team members, software development staff and project management,...
2015-08-01
1,617 reads
Time and again I see developers querying SQL Server trying to retrieve TOP (N) records but without using ORDER BY,...
2015-07-31
10,584 reads
Kon!!!!!! In WOxPod!, episode # 014 – “Kon Melamud” Today we have...
The post 014 -Kon Melamud appeared first on WaterOx Consulting.
2015-07-31
1,156 reads
Don’t tell me that you didn’t see it coming: at some point, Developers end up being put to hell by...
2015-07-31
1,238 reads
This is a first article in a series of articles about real life database and IT infrastructure migration project which...
2015-07-31
3,338 reads
While learning SQL Server 2014. looks like we need to swing on it as SQL Server 2016 is coming with...
2015-07-31
1,637 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