Midlands PASS Chapter Meeting - April 3, 2008
This is a meeting reminder about our next PASS meeting scheduled for April 3, 2008. It will once again be...
2008-04-01
683 reads
This is a meeting reminder about our next PASS meeting scheduled for April 3, 2008. It will once again be...
2008-04-01
683 reads
I'm a little late on this one, but Cesar Cerrudo has announced he's going to demonstrate exploits to Windows Server...
2008-04-01
684 reads
Brian has just posted the schedule of sessions for SQLSaturday #3. I haven't gone through to see how many are...
2008-03-31
1,340 reads
I am here in sunny Orlando at End to End Training. I am very impressed with the new training facility....
2008-03-31
1,381 reads
As I've mentioned a couple times previously I teach a free 'how to be a speaker' course, mainly to encourage...
2008-03-30
1,381 reads
I've just received notice that I will be a presenter at the upcoming SQL Saturday event in Jacksonville, Florida. I'll...
2008-03-30
1,532 reads
I was following a debate on the new Merge syntax in SQL Server 2008 with interest. It was somewhat of...
2008-03-28
1,515 reads
"Select *" is bad. Everyone knows it, but everyone still uses it. I use it. Most of the time it is...
2008-03-28
1,447 reads
Who's bad?
"Select *" is bad. Everyone knows it, but everyone still uses it. I use it. Most of the time it...
2008-03-28
1,533 reads
SDTimes has an article up about Debunking Cyclomatic Complexity that talks about the results of some research that supports what I...
2008-03-28
1,516 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