Viewing 10 posts - 46 through 55 (of 55 total)
runal_jagtap (9/24/2012)
Finally i have been assigned this task to do next month..
but they are still not sure that if i Change the Log File location of the database...
September 24, 2012 at 11:00 am
Lynn Pettis (9/14/2012)
FYI, the way you editted the quote makes it seem I said something I didn't.
Sorry, that was a mess. I fixed it up.
September 14, 2012 at 9:50 am
Lynn Pettis (9/13/2012)
September 14, 2012 at 8:27 am
Eugene Elutin (9/13/2012)
Quite often splitting tasks using temp tables will not only significantly boost performance of complicated processes,...
September 13, 2012 at 12:39 pm
Perry Whittle (9/12/2012)
September 13, 2012 at 12:22 pm
Eugene Elutin (9/13/2012)
SELECT column1,'99' [a],left(column2,2) , max(column3) [c], 'Yes' [d], 'Test' [e]
,ltrim(rtrim(column1))+ltrim(rtrim(left(column2,2))) as test
INTO #pre1 ...
September 13, 2012 at 12:04 pm
Lynn Pettis (9/13/2012)
September 13, 2012 at 8:52 am
Well I did some more digging and it looks like the ltrim/rtrim is doing something because I get different results if I take them out. From what I gathered...
September 13, 2012 at 8:47 am
Jeff Moden (9/12/2012)
Also, what's with all the LTRIM/RTRIM stuff? Data should be properly stored without leading spaces and trailing spaces hardly...
September 13, 2012 at 7:52 am
Thanks everyone. I learned a lot here. I went with the NOT EXISTS and it finishes in 2 seconds now. Very nice!
September 12, 2012 at 9:28 am
Viewing 10 posts - 46 through 55 (of 55 total)