Viewing 15 posts - 3,406 through 3,420 (of 5,843 total)
Assuming this system USED to start up successfully, SOMETHING has changed:
1) check permissions on drives, directories, files that have sql server data.
2) did someone enable windows Data Execution Prevention stuff?
3)...
May 10, 2011 at 7:59 am
run sp_whoisactive (search sqlblog.com for latest version of this AWESOME freebie) to check for blocking.
May 8, 2011 at 10:48 pm
1) gotta ask why 3rd party tools are forbidden for this need - they are the RIGHT and BEST solution
2) is the backup file on same IO as IO you...
May 8, 2011 at 10:45 pm
Maybe I need another cup of coffee, but I don't see how ROW_NUMBER can help with this classic 'running totals' type of scenario. Best bet for that is actually...
May 6, 2011 at 10:38 am
sqlnaive (5/6/2011)
Insert into dbo.TableA
PageId, col1, col2, col3, col4, col5, col6, col7, col8)
select
(row_number()OVER (ORDER BY col1, col2,...
May 6, 2011 at 10:32 am
here is a great guide to deadlock troubleshooting (see additional 2 linked posts): http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
May 6, 2011 at 10:27 am
serializable isolation, no explicit transaction control, no error handling, GUIDs all over the place, missing SET NOCOUNT ON - wow, where to start with the issues here...
See here and the...
May 6, 2011 at 10:26 am
Grant tagged the root cause here I think: you MUST update ALL statistics with a FULL SCAN after upgrading a database from SQL 2000 to SQL 2005+. Doing anything...
May 5, 2011 at 7:32 am
You asked for a fast response, so I say the fastest way to figure out what is going on and correct it is to get a professional tuner connected to...
May 5, 2011 at 7:30 am
Ninja's_RGR'us (5/5/2011)
sqlnaive (5/5/2011)
May 5, 2011 at 7:27 am
day-476284 (5/4/2011)
I agree application queries need to be optimized. Soon, we are going to replace this old application with a newer version by...
May 4, 2011 at 4:39 pm
Sad but true that SOOOO many entities out there nickel and dime things - right up until they REALLY mess something up. Then they often wind up paying tremendously...
May 4, 2011 at 2:53 pm
Ninja's_RGR'us (5/3/2011)
GilaMonster (5/3/2011)
Ninja's_RGR'us (5/3/2011)
GilaMonster (5/3/2011)
<grrrr> 3 year old thread.Why does it bother you? People read this from google today so it's still usefull!
Because I didn't notice and wrote a...
May 4, 2011 at 10:13 am
There are so many bad things in that sproc I don't know where to start. But given what I see I imagine there are all KINDS of opportunities for...
May 4, 2011 at 10:11 am
Commong problem: the query plans for BOTH conditionals are compile the FIRST time the sproc is executed -> thereby GUARANTEEING one of them will be BAD. Solution is to...
May 4, 2011 at 10:02 am
Viewing 15 posts - 3,406 through 3,420 (of 5,843 total)