Author of the Year at MSSQLTips.com
I have the pleasure and privilege to announce that I was awarded with the “Author of the Year” award at...
2015-01-13
519 reads
I have the pleasure and privilege to announce that I was awarded with the “Author of the Year” award at...
2015-01-13
519 reads
As you might have realized, this is not the title of an Agatha Christie book, but rather about some nasty...
2015-01-09
782 reads
Just like last year, I’m a bit late with the obligatory “how was last year and what is this year...
2015-01-08
640 reads
Here is an overview of the articles I published in the last quarter of 2014.
INTENSE SCHOOL
MCSE Prep: Overview of T-SQL Windowing...
2015-01-07
529 reads
I recently published an article on MSSQLTips.com titled Format Durations in SQL Server Analysis Services. For those who haven’t read...
2014-12-22
724 reads
Just like last year, SQLServerCentral.com and Simple Talk are hosting the Tribal Awards. In their words:
The Tribal Awards, co-hosted by Simple-Talk and...
2014-12-18
857 reads
The recording of the webinar I did for the PASS BI virtual chapter is live!
(Quick reminder: it was the same...
2014-12-05
739 reads
I was recently contacted by the fine gents of Webucator, an online training services provider. In order to promote their...
2014-11-27
1,079 reads
I have the great pleasure to announce that I have been nominated for the “Author of the Year” award at...
2014-11-20
532 reads
On November 17th 2PM CET I will redo my SQL Server Days presentation How to (not) torment your fellow SSIS...
2014-11-12
705 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