Employee or 1099, Part 2
A couple weeks back I posted Employee or 1099 and now that my friend Wes Dumey has posted his last installment, I...
2008-07-09
321 reads
A couple weeks back I posted Employee or 1099 and now that my friend Wes Dumey has posted his last installment, I...
2008-07-09
321 reads
Po fillojme me publikimin e te gjitha shkurtesave qe perdoren ne SQL Server 2005...fillimisht do ta publikoj vetem nje e...
2008-07-09
602 reads
Hi,
I'm posting the SQL Server 2005 shortcut here...and it is just begining.
If you want to start the SSMS (SQL Server...
2008-07-09
3,322 reads
Ran across IronKey Personal in PC Magazine and thought some of you might be interested. It has built in encryption,...
2008-07-08
284 reads
It's been a long time since I saw a vulnerability in SQL Server released. And to date, there haven't been...
2008-07-08
803 reads
Hi - SQL World!
Here in my blog I will post everything about SQL Server 2000/2005/2008!
Hope that I will help my IT...
2008-07-08
647 reads
I had a note to myself to write up some notes about listening on a non standard port, but it...
2008-07-07
404 reads
I went away in the mountains for July 4th to a camping facility with the family. I was an unwired...
2008-07-07
903 reads
I will be speaking at an upcoming JSSUG (Jacksonville SQL Server User Group) meeting Wednesday July 16th. This event will...
2008-07-07
517 reads
Just over a year ago I decided to start a blog and I put an item on my calendar to...
2008-07-06
361 reads
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
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...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Comments posted to this topic are about the item Looking for New Blood
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