Viewing 15 posts - 1 through 15 (of 146 total)
The query is a bit suspect to be honest, but since it's a end of day batch. It's not expected to run in seconds, but 4 hrs plus is too...
February 1, 2013 at 12:01 pm
Thats what I done in the end recently, I first of all populated the temp table, then updated the columns that use the function seperately, what I dont understand is...
February 1, 2013 at 10:38 am
This is just a benchmark load, the intended DB workload is a datawarehouse.
September 30, 2011 at 4:23 am
The size is around 200GB for both differential and full.
September 5, 2011 at 8:56 am
Looks as though the problem lies within your joins, start bit by bit and don't try to run the whole thing at once. I am seeing things like Hash match...
September 15, 2010 at 9:53 am
If you can send the graphical execution plan, I may be able to help you.
In my own experience, when I had same issues, it could be due to the following
Bad...
September 15, 2010 at 4:29 am
I generally dont like maintenance plans, I like the idea of having script and customising to business needs etc.
What I had was a stored procedure that can do all 3...
March 15, 2010 at 6:37 am
Thanks for the reply, is that the best way to do it, how about functions that are part of a check constraint, returns a bit. is that better ?
March 9, 2010 at 4:17 am
Depending on certain factors and also how your infrastructure is setup. You have options.
You can use backup/restore to refresh the data.
You can use SQL replication.
You can use SQL log shipping.
You...
March 9, 2010 at 3:26 am
Look at parameter sniffing, thats normally the cause of these problems. look at the procedure cache for invalid plans which have been cached.
January 27, 2010 at 2:42 pm
Adding a bit of more information.
Source,Severity,Message
spid74,Unknown,There is insufficient system memory in resource pool 'internal' to run this query.
spid74,Unknown,MEMORYBROKER_FOR_RESERVE (internal) Pages<nl/>----------------------------------------...
January 18, 2010 at 5:03 am
OK, thanks chaps. I am thinking how about environments where the database design is suspicious, the queries/stored procedures dont look tuned or dont follow best practice.
Also, I think it would...
January 11, 2010 at 9:32 am
If its one specific query, I would look at the Database Tuning advisor. From experience of upgrading to SQL 2008, this i what you should do.
Update statistics on every table...
December 15, 2009 at 8:16 am
Viewing 15 posts - 1 through 15 (of 146 total)