Viewing 15 posts - 406 through 420 (of 488 total)
mitra.zaimi (7/1/2010)
July 1, 2010 at 10:31 pm
Try adding a carriage return at the end of the last line if there isn't one there already.
Leo
June 17, 2010 at 8:07 pm
Duran (6/14/2010)
... I wonder if off the peg applications create indexes that are not as optimal as they could be, and generally can they be changed.
Yes, off the peg applications...
June 14, 2010 at 4:21 pm
From the timeout error it looks like the problem is load on the database server. It may be worth running some Performance counters. like CPU usage to see if your...
June 8, 2010 at 6:32 pm
Are you seeing any error messages when your connections fail or when trying to connect and it fails? Either in SSMS or the SQL error logs?
Do you see different behaviour...
June 8, 2010 at 4:16 pm
Users writing their own queries.
New application added, typically data warehouse and Analysis Services
Leo
June 7, 2010 at 9:57 pm
Quite possibly a permission error. Have you set the trace to capture errors?
Leo
June 7, 2010 at 7:35 pm
In simple terms, you can run a 32 Bit application on a 64 Bit operating system (with exceptions), but you can't run a 64 Bit application on a 32 Bit...
June 7, 2010 at 7:31 pm
I much prefer setting the plan to write to a log file and use that than the plan history.
Different courses for differeent horses.
Leo
May 26, 2010 at 6:08 pm
Have you looked in the SQL Server error log?
Maint plans are notorious for not logging things nicely unless you actual add logging to the plan. Something I would always do....
May 26, 2010 at 5:54 pm
You can do a query against master..sysprocesses and look at the blocked value. This will also tell you the SPID doing the blocking.
I have a script but I'll need...
May 26, 2010 at 2:25 pm
In blocking, one process is holding s resource that another process requires. SQL knows that once the blocking process finishes the resource will be available and so the blocked process...
May 25, 2010 at 9:05 pm
Can you see the SPID related to these transactions? You should be able to see what the update statment was, even if all you do is a DBCC INPUTBUFFER(spid_no).
Also what...
May 25, 2010 at 2:10 pm
I recommend you do some basic SQL courses. Some one may have time to answer these sorts of questions, but if you read the SQL BOL (books on line) or...
May 25, 2010 at 1:52 pm
I would check the build was done correctly, particularly that all the databases are on shared resources.
Leo
There are 10 types of people in the world.
Those who understand binary and and...
May 25, 2010 at 1:47 pm
Viewing 15 posts - 406 through 420 (of 488 total)