Viewing 15 posts - 21,121 through 21,135 (of 22,184 total)
Great editorial. Thanks for putting it out there.
We're in the early stages of design for a new project and we were honestly counting on a number of features in 2008...
January 29, 2008 at 6:55 am
It would work for string comparisons though, but a case insensitive database wouldn't need to force the strings to all UPPER case in any regard. It doesn't address the...
January 29, 2008 at 6:48 am
Yeah, I noticed this morning that I didn't have it quite right. I'd joined against the table, but I didn't also provide criteria for the column. Sorry about that. How's...
January 29, 2008 at 6:27 am
I'm not sure why you're getting the collation errors. One of the columns must be marked differently. How about this as a query:
select p.name
...
January 28, 2008 at 11:01 am
That's elapsed time on the client then. Have you looked at the execution plans?
January 28, 2008 at 10:50 am
Sorry, I didn't read the whole post (again).
That is odd. Where are you measuring the time elapsed, the server or the client?
Have you looked at the execution plan? Maybe most...
January 28, 2008 at 8:04 am
Probably because most of the time is spent in martialing the rows of data, not particular columns.
January 28, 2008 at 7:50 am
The problem with dynamic queries is that they can lead to recompiles and poor plan reuse. While they solve some problems, they can introduce others.
January 28, 2008 at 7:46 am
Imke Cronje (1/28/2008)
Checked out execution plan and its shows this:
Query Cost (relative to batch) : 100%
Estimated Operator Cost: 99...
January 28, 2008 at 7:43 am
Basically the case statement is resolving either to 1 or 0. If it's 1, then 1=1 at the end of the case statement. If it's zero, then 0 certainly does...
January 28, 2008 at 6:06 am
And the execution plan?
Plus, how often does the index get rebuilt or the statistics get updated?
January 28, 2008 at 6:00 am
Further, since as you say this isn't your database, if the owner has set up security appropriately, you probably won't have DDL permissions.
January 28, 2008 at 5:52 am
Everything everyone else said is 100% true. Just understand that if you don't need case sensitivity, using it just to be cool can add an incredible amount of overhead to...
January 28, 2008 at 5:49 am
Designing web pages & managing databases are two different beasties. But since you ask, I have all of the Inside SQL Server 2005 series sitting on my desk, well thumbed...
January 28, 2008 at 5:45 am
We've actually got a method that does this pretty well. We try to use it sparingly, but some of our reports from some of our systems have legitimate requirements to...
January 28, 2008 at 5:42 am
Viewing 15 posts - 21,121 through 21,135 (of 22,184 total)