Viewing 15 posts - 5,776 through 5,790 (of 5,842 total)
>>...We have a need to only every insert data, no updates. ...
Can't you simply do a not exists clause to see if the record of concern already exists? I can't...
May 3, 2007 at 10:23 am
>>"Microsoft support policies do not apply to the database mirroring feature in SQL Server 2005 ........ Database mirroring should not be used in production environments, and Microsoftsupport services will not...
May 3, 2007 at 9:03 am
Grant, I can see a case such as the example in BOL (ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/0208b259-7129-4d9f-9204-8445a8119116.htm) where due to the recursive nature of the data a CROSS APPLY will be efficient. However, do...
May 3, 2007 at 8:57 am
I have the HIGHEST regards for Itzik's skills with TSQL and enjoy his writings and even use a number of his examples in my classes/presentations. This book, however, is NOT...
May 3, 2007 at 8:08 am
1) I would be leery of attempting to build a production system using mirroring if you are a sql server newbie. WAY too many opportunities to fail there, and you...
May 3, 2007 at 7:12 am
1) Confused. In your original post you stated there was no line in the sproc that did CREATE INDEX, yet in the last post you made you gave a temp...
May 3, 2007 at 7:04 am
One of my favorites is Beginning Transact SQL ... by wrox press.
May 3, 2007 at 6:48 am
Agree with the others here that you should store data in the appropriate datatype, for a number of reasons. One thing you should do also is to pick the CORRECT...
May 3, 2007 at 6:39 am
I think it is a very poor and short-sighted development decision to go the linked server route, at least for direct data access, manipulation or sproc calls that does not...
May 2, 2007 at 9:26 am
Rudy, your post is certainly in the top ten best posts I have ever read on any forum. It was well thought out and worded, thought provoking and also focused...
April 30, 2007 at 10:30 pm
>>
Nope... you made an unqualified statement with no conditions. And no one would force such an index as you have because everyone knows the bookmarks will kill any hope of...
April 30, 2007 at 10:19 pm
Yes, really. Your fabricated example uses a covering index and thus has no need to touch the base table. Change your select to this:
SELECT SomeID, SomeString, somedate
FROM dbo.IndexTest
WHERE...
April 30, 2007 at 6:49 pm
1) Your "realistic assumptions" still have a fundamental flaw. Many (most in my experience and also from students in the classes I teach) Microsoft shops don't have even a SINGLE...
April 30, 2007 at 4:22 pm
Rudy, you are likely doing things backwards I think, especially in this case where there may well have been NO tuning/indexing done in the first place (given that a .NET...
April 30, 2007 at 10:52 am
Yeah - there are definitely some sharp guys out there consulting that are unfortunately not very good in the 'mentor' roll. That is a pretty good performance gain (14 to...
April 30, 2007 at 7:54 am
Viewing 15 posts - 5,776 through 5,790 (of 5,842 total)