Viewing 15 posts - 6,691 through 6,705 (of 7,597 total)
Jeff Moden (3/1/2013)
ScottPletcher (3/1/2013)
Code reuse is another tricky subject. It generally gets talked about far more often than it is genuinely done. A few developers are bad enough,...
March 1, 2013 at 2:18 pm
Sean Lange (3/1/2013)
ScottPletcher (3/1/2013)
Or simply:
SELECT CONVERT(char(2), myDate, 1)
I don't think will quite work Scott. The OP said they are using month(MyDate) which will return an int. Casting a single digit...
March 1, 2013 at 2:15 pm
First, make sure you're checking index fragmentation and only rebuilding indexes that actually need it.
Also, if you have tempdb properly tuned, look into using "SORT_IN_TEMPDB = ON" option when rebuilding...
March 1, 2013 at 1:53 pm
Or simply:
SELECT CONVERT(char(2), myDate, 1)
March 1, 2013 at 1:09 pm
Just trying to find something that fits the symptoms...
Is it possible that a db was deleted (offlined???) during your processing?! Perhaps a process that deletes and then restores a...
March 1, 2013 at 11:35 am
Lynn Pettis (3/1/2013)
ben.brugman (3/1/2013)
Jeff Moden (2/26/2013)
March 1, 2013 at 10:42 am
Jeff Moden (3/1/2013)
Eugene Elutin (2/28/2013)
March 1, 2013 at 10:40 am
Please see if this gives you a useful result:
SELECT
siwh.ItemNumber, siwh.StoreNumber, w.Weeks
FROM #StoreItemWeeksHave siwh
INNER JOIN #Weeks w ON
w.Weeks BETWEEN siwh.WeekStart AND siwh.WeekFinish
ORDER BY
...
February 28, 2013 at 3:53 pm
Eugene Elutin (2/28/2013)
davidsatz (2/28/2013)
So I am not hearing anyone disagree with my conclusion that there is no way to accomplish this...:ermm:
I'm not exactly sure what you are looking to do,...
February 28, 2013 at 2:57 pm
Int'l Paper also was buying lots of companies for awhile, some of them other paper companies.
During a merger, there are legal restrictions on what can and can't be viewed, in...
February 28, 2013 at 12:48 pm
Robert Davis (2/28/2013)
The reason for allocating multiple files is to avoid...
February 28, 2013 at 12:42 pm
Robert Davis (2/28/2013)
ScottPletcher (2/28/2013)
I have additional space to grow, you prevent it.
So if a task unexpectedly needs, say, 50MB more of tempdb space to complete, you abend it -- perhaps...
February 28, 2013 at 11:41 am
GilaMonster (2/28/2013)
ScottPletcher (2/28/2013)
GilaMonster (2/28/2013)
ScottPletcher (2/28/2013)
GilaMonster (2/28/2013)
ScottPletcher (2/28/2013)
February 28, 2013 at 11:37 am
Robert Davis (2/28/2013)
ScottPletcher (2/28/2013)
So if tempdb now does need to grow for whatever reason, and it causes a SQL issue because it can't, you've guaranteed that there's no easy way...
February 28, 2013 at 11:30 am
GilaMonster (2/28/2013)
ScottPletcher (2/28/2013)
GilaMonster (2/28/2013)
ScottPletcher (2/28/2013)
February 28, 2013 at 11:21 am
Viewing 15 posts - 6,691 through 6,705 (of 7,597 total)