When Emotional Intelligence Trumps Math
I have been in Corporate IT long enough to know that when a bad decision is made, you move out...
2015-07-28
470 reads
I have been in Corporate IT long enough to know that when a bad decision is made, you move out...
2015-07-28
470 reads
Education. The key topics for everyone.
In his incredibly famous TED Talk “Do Schools Kill Creativity“, which might be some of...
2015-07-28
487 reads
SQL Saturday #386 (Albany, NY) – My first SQL Saturday Session
So that picture to the right is me out front of...
2015-07-28
713 reads
SQL Server has the ability to monitor both server and database level events via the SQL Server Audit feature. Audited...
2015-08-06 (first published: 2015-07-28)
3,477 reads
When you need to figure out how indexes are contributing to the overall size of a table within a database, this script will help you!
Related Posts:
Ghosts in your Database...
2015-07-27
11 reads
I have previously written about finding what the big space consumers are within the database. I even shared scripts in...
2015-08-04 (first published: 2015-07-27)
2,315 reads
This is a bit of an off topic post from the technical stuff, but there’s a bit of a tie-in,...
2015-07-27
1,045 reads
This is I believe the 7th SQLSaturday in Baton Rouge. Please come out this Saturday at the LSU Business Center...
2015-07-27
600 reads
Let’s Play A Game! So, just to tickle your fancy, here is...
The post Sneak Preview – Episode 014 appeared first on...
2015-07-27
487 reads
As part of my quest for using data to find answers to everyday questions using Power BI – after analyzing baby names...
2015-08-06 (first published: 2015-07-27)
3,194 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