Viewing 15 posts - 286 through 300 (of 2,487 total)
Good to hear you've got a successful completion ![]()
Grey matter has churned over sufficiently ... ![]()
Statistics are...
--------------------
Colt 45 - the original point and click interface ![]()
May 31, 2007 at 9:00 am
I'd also bet that the "sfbUpdateProductSalesSummary" SP is badly in need of some indexes, or maybe updating stats for existing indexes.
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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 ?
--------------------
Colt 45 - the original point and click interface ![]()
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.
--------------------
Colt 45 - the original point and click interface ![]()
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.
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
May 29, 2007 at 9:39 pm
Posting the query might help us guide you towards ensuring the indexes you have are appropriate.''
--------------------
Colt 45 - the original point and click interface ![]()
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
--------------------
Colt 45 - the original point and click interface ![]()
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 ![]()
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
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...
--------------------
Colt 45 - the original point and click interface ![]()
May 28, 2007 at 6:53 am
Viewing 15 posts - 286 through 300 (of 2,487 total)