Charlotte SQL Server User Group Link Wrong at HQ Site
If you're looking for the Charlotte SQL Server User Group web page, the link on the PASS HQ site is...
2008-04-09
596 reads
If you're looking for the Charlotte SQL Server User Group web page, the link on the PASS HQ site is...
2008-04-09
596 reads
Ok, I'm a bit of an ID10T at times.
I've talked about this for months, especially trying to push SP3 for...
2008-04-09
794 reads
Well, it got me at least! Not long ago someone asked me about partitioned views and as I'm apt to...
2008-04-08
419 reads
I made the decision today to start using SQL Server 2008 Management Studio at work to manage my 2000 and...
2008-04-08
817 reads
I suspect few would argue that database mail in SQL 2005 is a huge improvement over the mail system in...
2008-04-07
308 reads
The Heroes Happen Here launch event for Charlotte, NC is tomorrow. It looks like there are still registration slots open:
Heroes...
2008-04-07
1,011 reads
Absolutely worth watching.
http://blogs.sun.com/jonathan/entry/the_video
2008-04-07
519 reads
Red Gate's schema comparison tool, SQL Compare, is in beta for the newest version, SQL Compare 7. You can find...
2008-04-07
1,213 reads
From the SQLSaturday event site:
AFTER EVENT PARTY ANNOUNCED! Our after event party will be held at 7 Bridges Grille beginning...
2008-04-07
578 reads
In SQL 2000 when you run sp_updatestats it's the equivalent of running UPDATE STATISTICS on each table, forcing the update...
2008-04-06
421 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