Working with “special” names
What do you do when you need to use a special character in a name? Well, I guess I should...
2015-10-22 (first published: 2015-10-19)
1,506 reads
What do you do when you need to use a special character in a name? Well, I guess I should...
2015-10-22 (first published: 2015-10-19)
1,506 reads
It's your first day at Corp of
America as DBA. The old DBA left. The sysadmins are managing the SQL Servers.
And...
2015-10-23 (first published: 2015-10-19)
4,214 reads
Continuation from the previous 68 parts, the whole series can be found at http://www.nikoport.com/columnstore/.
This blogpost is dedicated to one of...
2015-10-18
531 reads
October has been such a whirlwind of PASS activity for me. Two SQL Saturdays and the PASS Summit. This post...
2015-10-18
383 reads
Dear Friends,
This is another post in the series of step by step SSIS ,Zero to hero series. In this post...
2015-10-18
2,809 reads
Dear Friends,
In the series of Step by Step SSIS , Zero to Hero in SSIS this is another post in which...
2015-10-22 (first published: 2015-10-18)
2,512 reads
Thanks for attending my session on analyzing data with TSQL. I hope you learned something you can take back and...
2015-10-17
526 reads
Dear All,
In the series of zero to hero SSIS series this is one of the simplest transformation control which...
2015-10-17
1,126 reads
By Steve Bolton
…………In the last series of mistutorials I published in this amateur SQL Server blog, the outlier detection methods...
2015-10-21 (first published: 2015-10-17)
2,517 reads
To celebrate a recent achievement, I have decided to create a whole new section to my blog that will be...
2015-10-17
515 reads
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
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...
Comments posted to this topic are about the item Looking for New Blood
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