Viewing 15 posts - 256 through 270 (of 369 total)
To avoid adding more re: date accuracy, please refer to the following, and currently active, thread around getdate() accuracy:
http://www.sqlservercentral.com/Forums/Topic500971-338-1.aspx
May 16, 2008 at 1:15 pm
Greg Jennings (5/16/2008)
Just for clarification, are you saying that a date/time value 1 millisecond before midnight and a date/time value 1 millisecond after midnight would have the same value in...
May 16, 2008 at 1:10 pm
SQLZ (5/15/2008)
select count(datetime) from XYZ where datetime...
May 16, 2008 at 7:19 am
inexplicably not able to handle outputting Varchar(MAX), being stuck instead @ varchar(8000), so you can't play with the full specturm should you need to.
That's a real bad limitation! Thanks...
May 13, 2008 at 8:11 am
A semicolon at the beginning of the statement is valid
I'm seeing a lot of this lately. I.e., statements such as:
;WITH ...
Note that the semicolon is NOT part of the...
May 13, 2008 at 7:36 am
I can probably see using CLR for some specialized functions, but probably NOT for performing DML operations on tables. Just because there is new way of doing things, it...
May 13, 2008 at 7:19 am
Along the same lines, you may need a "rethrow error" procedure like the following or you can put the "rethrow" logic into the previously suggested procedure.
SET ANSI_NULLS ON;
SET QUOTED_IDENTIFIER ON;
GO
ALTER...
May 9, 2008 at 1:45 pm
Its suprising to hear that you use Full-Text indexing but have not been administering it and have no commitment to administer it (which is what I was talking about).
...
May 9, 2008 at 7:12 am
Fulltext indexing is a substantial administrative commitiment
Interesting comment. We're running a SaaS business using it to index plain text as well as binary documents (Word, PowerPoint, PDF, etc.) with...
May 8, 2008 at 2:25 pm
But the database im development will insert arround of 10.000 new rows per day.
I don't have knowledgements of full-text indexing, but we can't refill every day the Full Text Catalog...
May 8, 2008 at 1:25 pm
My strong recommendation is to use full-text (CONTAINS) vs. LIKE clause pattern matching for tons of reasons:
1. Performance!
2. You won't get false positives. E.g., "%good%" will also find "goodness",...
May 8, 2008 at 11:39 am
The downsides of TRY...CATCH are:
1. You cannot re-raise the original exception after examining/handling it in the CATCH block. Contrast with Oracle's PL/SQL exception handling where you can re-raise the...
May 8, 2008 at 10:33 am
John,
Since the only important bit of the data for the performance test is the number of commas using random data is overkill for this.
I disagree to a bit. It...
May 7, 2008 at 9:14 am
As always, a great article from Jeff.
As for performance testing of various techniques by anyone, I am continually amazed as to the incorrect methods for generating sample data.
Example (taken from...
May 7, 2008 at 7:27 am
andre.naess (4/22/2008)
But in this particular case there is no correct order.
I feel your pain as I've also come across a very similar situation (i.e., the order of events couldn't be...
April 24, 2008 at 7:06 am
Viewing 15 posts - 256 through 270 (of 369 total)