Last Weeks Top 10 “Reading” Links #5
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-05
615 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-05
615 reads
This is just a quickie post to answer a question on how to loop through multiple servers in SSIS. There...
2012-11-05 (first published: 2012-10-31)
5,084 reads
I like reading and while I read more on an e-reader than I used to, I still prefer the printed...
2012-11-05
841 reads
Seriously, the clock is ticking and you should be in your car or a plane for PASS Summit by now. ...
2012-11-05
682 reads
Registration and Check in for PASS Summit 2012 was opened yesterday (Nov 4th), and I decided to utilize this opportunity...
2012-11-05
792 reads
The Summit proper starts on Wednesday, but the Summit starts at registration. I left a little early from work setting...
2012-11-05
990 reads
Morning
Could not sleep past 4:30AM this morning, daylight savings time and 2 time zone changes did not help. So, exercise...
2012-11-05
683 reads
I started this trip with a 4:30 am wake up on Sunday to be at the airport for the direct...
2012-11-05
838 reads
I’ll be live on the PASS TV broadcast on Wednesday, Nov 7, at 11:40am PST. The Professional Development group asked...
2012-11-05
1,171 reads
If you’re in Seattle for the PASS Summit and would like a chance to meet some new people in a...
2012-11-05
832 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