Viewing 15 posts - 22,906 through 22,920 (of 26,490 total)
Dennis D. Allen (1/21/2009)
Yes that does work and is a fine workaround.
I want to understand why this does not work as it should work correctly and the...
January 21, 2009 at 2:13 pm
Unfortunately, no. Using your sample data, what would you like to see as output.
Input --> Process --> Output.
You have given me the Input, give me the Output, and I'll...
January 21, 2009 at 1:58 pm
Use the Force Luke...
Actually, nothing wrong with posting an answer that's already been posted. One thing you'll see is a difference in formating styles.
January 21, 2009 at 1:46 pm
Dennis D. Allen (1/21/2009)
January 21, 2009 at 1:40 pm
airborn (1/21/2009)
January 21, 2009 at 1:25 pm
hmmm, Got "it" I think he has!
January 21, 2009 at 1:15 pm
Gail, From the original post, it looks like it was allowed to grow due to a lack of backups being taken on the log file. If they start running...
January 21, 2009 at 1:10 pm
Okay, is this what you are trying to accomplish?
--===== Create the test table
CREATE TABLE #apples
( ...
January 21, 2009 at 1:04 pm
airborn (1/21/2009)
Based on my sample data - I need my output to show me a total record count for the Outcome,Staff,Disp,Month,Priority and that just for the year '2007'.Thanks
Here is...
January 21, 2009 at 12:59 pm
Tell me if I am wrong, but aren't the last 2 the same as the first?
January 21, 2009 at 12:53 pm
GSquared (1/21/2009)
Lynn Pettis (1/21/2009)
INSERT INTO #grapes
(win_id, priority)
SELECT '19820865478765','1' UNION ALL
SELECT '19820835478765','5' UNION ALL
SELECT '19820895478765','4' UNION ALL
SELECT '19820865438765','2' UNION ALL
SELECT...
January 21, 2009 at 12:51 pm
You also have a problem with the following data.
INSERT INTO #grapes
(win_id, priority)
SELECT '19820865478765','1' UNION ALL
SELECT '19820835478765','5' UNION ALL
SELECT '19820895478765','4' UNION ALL
SELECT '19820865438765','2' UNION ALL
SELECT '19820865478765','1' UNION ALL...
January 21, 2009 at 12:36 pm
You are missing one last thing from your last post. Go back and look at your sample data. Based on that data, what is the expected output you...
January 21, 2009 at 12:26 pm
As mentioned earlier, the active portion of your transaction log may be at the end of the log file. If that is the case, you won't be able to...
January 21, 2009 at 11:49 am
Viewing 15 posts - 22,906 through 22,920 (of 26,490 total)