Kindle - About Face
OK, I reversed myself and bought a Kindle today. Or I guess I ordered one and it should be here...
2008-08-28
1,770 reads
OK, I reversed myself and bought a Kindle today. Or I guess I ordered one and it should be here...
2008-08-28
1,770 reads
The Jacksonville SQL Server Users Group (www.jssug.com) is hosting a SQL 2008 launch event on Friday, Sep 12, 2008 in downtown...
2008-08-27
1,371 reads
Slightly off topic today.
It's fair to say I'm not a great traveler. Waiting for planes, dealing with the hassles of...
2008-08-26
1,535 reads
Just as I was debating whether to take advantage of Amazon's $100 savings offer on the Kindle (with a new...
2008-08-25
1,946 reads
I've used Quicken for a long time now and it's the center of how I manage finances at home. There...
2008-08-25
1,367 reads
One of the things I teach in our admin course is that it's not enough to just be the gatekeeper/central...
2008-08-24
1,447 reads
The following was sent to me by my friend and colleague Dave Miller:
Dave's Email:
Wanted to pass along something I hadn't...
2008-08-21
1,632 reads
In a week and a half, I start on the first of my four trips this year for work, and...
2008-08-21
1,462 reads
As I write this a tropical storm is passing over Orlando and has turned out to be milder than expected...
2008-08-21
1,404 reads
I got my first opportunity to visit New York City last week. I was actually sitting in on a training...
2008-08-20
1,555 reads
How I used AI for this postChatGPT to generate images based on info specifically...
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...
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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...
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