Giving a Presentation?
As a president of a local PASS chapter, one of the things I've struggled with is getting "locals" to give...
2008-05-17
687 reads
As a president of a local PASS chapter, one of the things I've struggled with is getting "locals" to give...
2008-05-17
687 reads
I ran across this a week or so ago. There were a couple of SQL Servers running named instances that...
2008-05-17
10,859 reads
As I went walking last night, I listened to two podcasts from RunAs Radio of interviews of Michael Manos and...
2008-05-16
1,090 reads
While this will remain a primarily technical blog, one thing I'm going to try and add is each Saturday I'll...
2008-05-16
741 reads
Recently I signed up for the FlyClear program (www.flyclear.com), a registered traveler program. Over the past year I've been travelling...
2008-05-15
724 reads
Tuesday, May 27, 2008
Speaker: SQL Server MVP Brian Knight
The Midlands PASS chapter will hold a special meeting on...
2008-05-15
638 reads
This year I've been lucky enough to have been offered some prizes or promotions from a few different companies for...
2008-05-15
1,209 reads
I've grown to like the presenter view in Powerpoint 2007; let's me navigate easily, and more important, lets me easily...
2008-05-13
462 reads
Some very interesting responses to my CLR editorial today including some good details that I haven't seen elsewhere. I'm still...
2008-05-13
913 reads
I get busy and usually forget to post when I'm out and about, but for once I've remembered. I'll be...
2008-05-11
462 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