Viewing 15 posts - 121 through 135 (of 599 total)
What all is running on the server? Any processes outside of SQL Server? Are you using CLR and/or SSIS or any of the other tools / apps? ...
January 26, 2011 at 10:20 am
There is no "article in question" as it's the entire process. Once I did have that single error and that appeared to be a precipitating factor for the long...
January 20, 2011 at 7:23 am
Update:
I rebooted both servers and the first time the job ran it ran within the expected time frame.
Next time, back to taking way too long.
I adjusted the schedules thinking maybe...
January 19, 2011 at 12:12 pm
Nope. The process has a near-exclusive lock on the table.
January 10, 2011 at 8:46 pm
Tell me about it.
We have a couple of different monitoring tools in place (VM Ware's admin/monitoring tool and RedGate's SQL Monitor tool) and I'm not seeing anything too out of...
January 10, 2011 at 2:23 pm
Yeah, I know it makes no sense. No triggers, no dependencies. I did try to take a look at the file but couldn't quite figure out how. ...
January 10, 2011 at 1:08 pm
It's a complete drop and refresh.
January 10, 2011 at 9:47 am
Because of how the application is handling this query - not to mention the fact that the query itself is very poorly written* - it's bound to wind up with...
December 16, 2010 at 7:40 am
bad plan got cached.
December 15, 2010 at 5:48 pm
If you need an argument, Non-ANSI join syntax is deprecated, so it will need to be removed/changed in the near future. Also, their non-optimized code creates great risk of...
December 15, 2010 at 2:49 pm
How are you doing the insert? With that many rows I'd suggest BCP.
For progress, a simple way would be to do a
select count(1) from table with (NOLOCK)
where...
December 15, 2010 at 2:29 pm
Any chance of getting this query into a stored procedure rather than being called from the application directly? With the way the query is written I'm sure the optimizer...
December 15, 2010 at 2:18 pm
You should also consider running it through an SSIS package.
December 3, 2010 at 11:11 am
Doesn't look like there's a direct way to do it. See:
http://www.sqlservercentral.com/Forums/Topic885747-1291-1.aspx
for some possibilities.
November 19, 2010 at 2:44 pm
[ @query = ] 'query'
Is a query to execute. The results of the query can be attached as a file, or included in the body of the e-mail message. The...
November 19, 2010 at 2:17 pm
Viewing 15 posts - 121 through 135 (of 599 total)