Viewing 15 posts - 53,026 through 53,040 (of 59,068 total)
July (1/8/2008)
EXEC xp_dirtree "\\machine\shrarename" but I obtain "system cannot...
January 8, 2008 at 6:02 pm
SELECT Part, MAX(Date) AS Date
FROM yourtable
GROUP BY Part
January 8, 2008 at 5:56 pm
...and it would be a lot faster if you used BULK INSERT or BCP...
January 8, 2008 at 5:49 pm
That's not such a bad idea (ad hoc usage to solve a very specific problem)... what is a bad idea is using non-temptable names for everything that you would normally...
January 8, 2008 at 5:22 pm
Thanks for the great feedback, Ian... especially about keeping it casual (ie. fun) and the remarks about documentation... We've actually put sime "documentation standards" into play at work. They're...
January 8, 2008 at 5:03 pm
Heh... I was thinking the same thing... beating are fun especially when delivered by code...
Since it's 2k5, I wonder if you could add a schema trigger to TempDB to sweep...
January 8, 2008 at 4:54 pm
Speaking of testing... if you value your production system, now would be a good time to setup a testing twin so you can do full regression testing of the SP...
January 8, 2008 at 4:39 pm
Just my experience... I keep a Tally table of 11k rows... sure, it covers the usual split of a VARCHAR(8000) but I use it for much more... if you consider...
January 8, 2008 at 4:32 pm
Have you taken the time to verify that you actually have the problem?
January 8, 2008 at 7:39 am
Dunno about that... but I do know that throwing indexes at tables will absolutely not help code that is written incorrectly because the code will not be able to use...
January 8, 2008 at 7:37 am
Perfect... thanks for the feedback.
Yeah, anytime you have a join on different datatypes, it must do an implicit conversion to do the join... best you can get out...
January 8, 2008 at 7:35 am
You see the need to split a parameter with more than a million characters?
January 8, 2008 at 7:31 am
Viewing 15 posts - 53,026 through 53,040 (of 59,068 total)