Viewing 15 posts - 181 through 195 (of 412 total)
Madhivanan (12/2/2008)
Just want to point out that ISNUMERIC and ISDATE is not reliableSELECT ISNUMERIC('12d5'),ISDATE('2000')
You are right that they sometimes return positives on things that might not be intended as numbers...
December 2, 2008 at 12:29 pm
Jeff Moden (12/2/2008)
... or a nice article on SSC, Phil. 😉
I'll hop on the bandwagon and say I would love to see this article, Phil.
And you are quite correct. ...
December 2, 2008 at 11:11 am
jacroberts (11/25/2008)
Adam Machanic (11/25/2008)
If you have a daily report that is run in batch, with no user waiting at the end of a button for the result, it doesn't matter...
November 27, 2008 at 9:31 am
jacroberts (11/25/2008)
timothyawiseman (11/24/2008)[hr
>>The problem is that your example did not show a case where efficiency is not a concern.
>>But, in your example you say there is no need to worry...
November 27, 2008 at 9:20 am
jacroberts (11/24/2008)
timothyawiseman (11/24/2008)
jacroberts (11/24/2008)
Performance isn't always an issue as in my previous example.
I've worked on and improved the performance of a lot of different SQL systems and I know when...
November 24, 2008 at 11:18 pm
jacroberts (11/24/2008)
Performance isn't always an issue as in my previous example.
I agree with Jeff that performance should always be a concern. After all, you may eventually need that report...
November 24, 2008 at 5:13 pm
The article was well written, but it is worth noting that Jeff Moden described a more set based approach to creating the same thing in http://www.sqlservercentral.com/articles/TSQL/62867/
November 24, 2008 at 5:09 pm
Lynn Pettis (11/24/2008)
November 24, 2008 at 4:12 pm
This is definitely an interesting article, but, to echo some of the others, it does have the feel of an ad.
Moreover, it seems that this would buy you relatively little...
November 14, 2008 at 6:13 pm
Heh. Robert and Mohit have a point. Instead of triggers views could be used to let a legacy application interact with and change the data in the way...
November 13, 2008 at 12:51 pm
The one thing I can think of off hand, (and I have never done this in practice) where you would need an instead of trigger is for being able to...
November 13, 2008 at 7:46 am
The article was well written, but probably extremely basic for people who read this site.
One thing I will point out is that you may want to make backups of the...
November 9, 2008 at 12:45 pm
That makes complete sense. Thanks.
November 8, 2008 at 12:53 am
Yes, and changes to the view definition do get propogated, but the indexes (even the clustered index) does not.
November 8, 2008 at 12:52 am
Ok, Jeff proved that the table is larger with an index than without, but why would that be true of a clustered index? Doesn't a clustered index primarily order...
November 7, 2008 at 6:08 pm
Viewing 15 posts - 181 through 195 (of 412 total)