Viewing 15 posts - 58,036 through 58,050 (of 59,048 total)
Thanks, Bill,
I do have to emphasize that performance will usually be better if you do this simple type of thing in the code mainstream instead of a function. Functions are...
July 2, 2006 at 8:58 pm
Jules,
The two functions I wrote do get rid of the time portion and they do it with only trwo functions instead of the 5 you used. AND, they did it without...
July 2, 2006 at 8:55 pm
My recommendation would be not to make a trip to a character based date and back again... I'd also not make a stored procedure for it. I'd likely do it...
July 2, 2006 at 12:23 pm
Dunno about VB datetimes but in SQL Server 2000...
I think you'll find that 23:59:59.999 will round up to precisely 00:00:00.000 and that 23:59:59.998 will round down to 23:59:59.997.
SELECT CAST('23:59:59.999' AS DATETIME)
SELECT CAST('23:59:59.998' AS...
June 30, 2006 at 6:57 am
I agree... a decent article... but it DOES sound like an advertisement and provides no real info as to how to do the sizing estimate if you don't have those...
June 30, 2006 at 5:59 am
Not a problem, Nick. You had the right idea...
In SQL Server (very cool and very unlike Oracle), there are two tables that are temporarily formed (in TempDB) and available in...
June 30, 2006 at 5:50 am
Nicely done... a couple of minor things you may want to change...
June 29, 2006 at 9:33 pm
I haven't checked your logic but the problem with the triggers is that they are written in a RBAR (pronounced "ree-bar", my less than affectionate term for "Row By Agonizing...
June 29, 2006 at 7:40 pm
I think someone needs to look at the data in the tables. How many times is a ZipCode listed in the neigborhood Profiles table? You could be spawning dozens or...
June 29, 2006 at 4:54 am
Scott's method will certainly work! I'd still like to know why "net" wants to do this...
June 28, 2006 at 3:15 pm
You may be able to get a bit more performance out of it by changing this...
WHERE neighborhoodinfo.dbo.Profiles.ZIP IS NOT NULL
...to this...
WHERE neighborhoodinfo.dbo.Profiles.ZIP > '00000'
... which will also exclude "bad" zip...
June 28, 2006 at 3:09 pm
Other than adding a primary key (defaults to clustered), there's not much you can do to increase the performance of a SELECT * other than pinning the table (as someone...
June 28, 2006 at 8:32 am
Won't work @@Identiy is a scalar function the returns the last identity value created in ANY table by anything in the current scope chain including triggers.
John Mitchel is correct... you'll...
June 28, 2006 at 8:22 am
I'm not sure why you need the performance hit of the split function...
For example, here's an example that splits a whole table at once (this one splits on periods which you...
June 28, 2006 at 1:42 am
Viewing 15 posts - 58,036 through 58,050 (of 59,048 total)