May 2011 S3OLV Meeting Reminder
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will be meeting on May 12, 2011 at the usual...
2011-05-10
24 reads
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will be meeting on May 12, 2011 at the usual...
2011-05-10
24 reads
This is a quick reminder of the upcoming May meeting for the Las Vegas SQL Server Users Group. We will...
2011-05-10
527 reads
This year I received an invitation to compete for one of the spotlight sessions and I wanted the presentation with...
2011-05-10
639 reads
As a part of my careers goals, I am trying to remain involved in the community through various engagements and events. Recently, I was able to present to the...
2011-05-10
14 reads
As a part of my careers goals, I am trying to remain involved in the community through various engagements and...
2011-05-10
683 reads
I’ve put in several abstracts for the 2011 Summit. This year we’re voting for preferred sessions. If you’re interested in...
2011-05-10
732 reads
I missed the Pass summit last November for a number of reasons, but I’m hoping I can attend this year....
2011-05-10
961 reads
Look at the cute bunny. Now go vote for me.
I can see October from here, and it’s coming at about...
2011-05-10
538 reads
PowerShell takes the Pole at SQLRally!
PowerShell has taken the Pole for the DBA division at SQLRally! Come see why the...
2011-05-10
715 reads
In developing my data warehouse ETL processes, there are some packages and SQL Agent jobs that are both necessary to the process of deploying a new version of the...
2011-05-10
10 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