Nominated for Author of the Year 2015
I have the great pleasure to announce that I have been nominated for the “Author of the Year 2015” award...
2015-09-02
412 reads
I have the great pleasure to announce that I have been nominated for the “Author of the Year 2015” award...
2015-09-02
412 reads
When dealing with Extended Events, there are a few ways to take a look some of the metadata. Not all metadata is created equal when dealing with Extended Events....
2015-09-02
10 reads
Today will be the first of a few introductory level posts about Extended Events.
When dealing with Extended Events, there are...
2015-09-02
798 reads
Remember that blog post from April this year that I announced working on my first ever SQL Server related book...
2015-09-02
1,565 reads
Monitoring of the size of database files is one of the important DBA tasks and this process should be automated....
2015-09-02
653 reads
If you’ve read my blog for a while you may have seen the following posts:
Ten MDX Calculations For Your Cube...
2015-09-02
1,089 reads
I’ve been working more with SQL Data Generator (SDG) because it solves some problems that many software developers have with...
2015-09-01
918 reads
I am glad to announce the very first release of the CISL – Columnstore Indexes Scripts Library, with codename “Ortus”.
Go on...
2015-09-01
598 reads
I’m excited to be able to say that coming up next week on Thursday September 10, I’ll be presenting my...
2015-09-01
795 reads
Are you rolling the dice with your love/hate relationship with XML? Tune in to see how you can ease your XML frustration along with increasing your free time to...
2015-09-01
28 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...
Telp/Wa 62 821-8200-233 Jl. Raya Cilandak KKO No.9, RT.1/RW.5, Ragunan, Ps. Minggu, Kota Jakarta...
Telp/Wa 62 821-8200-203 Gedung Perkantoran Hijau Arkadia, Tower C - Ground Floor, unit C103,...
Telp/Wa 62 821-8200-174 Menara Karya, Jl. H. R. Rasuna Said Ground floor, RT.1/RW.2, Kuningan,...
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