Viewing 11 posts - 421 through 431 (of 431 total)
SQL Server 2008 users should definitely consider using MERGE. MERGE will avoid having to do multiple scans/seeks in many cases.
http://blogs.conchango.com/davidportas/archive/2007/11/14/SQL-Server-2008-MERGE.aspx
January 29, 2008 at 4:57 am
Maybe it doesn't apply to your case but be aware that there is a nasty gotcha with BINARY_CHECKSUM(*). The checksum is determined by column order rather than name. So if...
November 5, 2007 at 6:12 am
Go to
You'll find all the information about Google APIs and how to integrate with their services.
October 27, 2007 at 4:54 am
Hi DCPeterson,
Thanks for reviving the discussion.
I'm not sure I understand your argument. I agree with you when you say that if we had a truly relational language and platform then...
September 25, 2007 at 3:05 pm
Please could you post the code here.
September 15, 2007 at 1:37 pm
In your Access query, FIRST just retrieves a value of the name column from some random row. Assuming you don't actually require a random result but don't mind which name...
September 15, 2007 at 1:34 pm
The "set based" model really means the Relational Model, on which SQL is based to a certain extent. It separates the data model from its implementation. Independence from ordering and...
September 4, 2007 at 3:33 am
I recommend you start by reading this book:
http://www.amazon.com/Introduction-Database-Systems-Eighth/dp/0321197844
The straightforward answer to your questions is that SQL Server is designed and optimized to work well with set-based SQL logic (more...
September 3, 2007 at 3:23 pm
I agree! Date and Darwen do too. They included RM Proscription 10 in The Third Manifesto: "D shall not be called SQL"!
August 3, 2007 at 3:54 pm
Date's book is a must-read.
Tropashko's book is already out. I got mine here: http://www.bookpool.com/sm/0977671542. I have to admit I was a little disappointed. It does contain some interesting nuggets but there wasn't...
April 26, 2007 at 5:39 pm
In a nutshell, I'd expect to see all the benefits that the relational model promised but that SQL doesn't always manage to deliver on: derivability, integrity, data independence, guaranteed access.
As...
April 26, 2007 at 5:32 pm
Viewing 11 posts - 421 through 431 (of 431 total)