Viewing 15 posts - 286 through 300 (of 2,486 total)
I'd also bet that the "sfbUpdateProductSalesSummary" SP is badly in need of some indexes, or maybe updating stats for existing indexes.
May 30, 2007 at 3:38 am
Obviously my grey matter isn't ticking over hard enough
Given that "TCSDailyNumbersIntoConfig" reports the failure, I'm betting that it's the "DROP TABLE #SizeSalesSummary" statement...
May 30, 2007 at 3:37 am
Just to make sure we're on the same page
Procedure sfbUpdateProductSalesSummary always returns failure in SQL Agent
Procedure TCSDailyNumbersIntoConfig pegs the CPU at 100%
Correct ?
May 30, 2007 at 3:06 am
Stranger and Stranger ...
Put a couple of PRINT statements in the procedure as status messages. These will show up in the output file.
May 30, 2007 at 2:47 am
The short answer, not necessarily.
The MSDN topic and its related topics will outline how SQL uses memory.
May 30, 2007 at 2:42 am
You shouldn't have a query that pegs the CPU at 100% for that long. Must be runnning really badly for that to happen. How many rows get added to the...
May 30, 2007 at 2:29 am
Hmmm ... I can understand how you can be frustrated with this. What you have a first look is not much help as the specific failure message from the procedure...
May 29, 2007 at 9:39 pm
Posting the query might help us guide you towards ensuring the indexes you have are appropriate.''
May 29, 2007 at 8:21 am
Have you set the query wait time using sp_configure?
Also, check this KB
http://msdn2.microsoft.com/en-us/library/aa937573(SQL.80).aspx
May 29, 2007 at 8:05 am
How about providing the SP's and maybe the exact errors that you're receiving. Then we could aid you further without doing too much guesswork
May 29, 2007 at 7:58 am
Firstly, posting images doesn't work in this forum so try to list the dialog setting in text.
1) A 'straight datapump' is basically a table to table copy. No transformation of...
May 29, 2007 at 5:28 am
Is this a straight datapump copying data directly into the destination table? If not, eliminate any processing during the datapump phase. Do any data manipulation via stored procedures after the...
May 28, 2007 at 4:40 pm
If your main concern is performance the a good rule of thumb is to adhere to standard T-SQL constructs wherever possible. Introducing additonal functions will only add to the overhead...
May 28, 2007 at 6:57 am
That is normal behaviour. SQL Server will consume as much memory as it needs, mostly for caching data. It will hold onto that memory until the operating system demands it...
May 28, 2007 at 6:53 am
Yes you may be able to recover some of the transactions in the LDF file. What you need to do is perform a "Tail Log" backup. Refer to this KB...
May 27, 2007 at 11:19 pm
Viewing 15 posts - 286 through 300 (of 2,486 total)