Viewing 15 posts - 44,791 through 44,805 (of 49,571 total)
What version of SQL did that database come from? What version are you trying to attach it to?
August 30, 2008 at 2:07 am
What do you mean by slow? Queries taking longer than the should? Queries timing out? All operations (including remote desktop) slower than normal? CPU maxed out?
August 30, 2008 at 2:00 am
balbirsinghsodhi (8/29/2008)
You can put a shrinking log file as your maintenance plan but never put shrinking database in your maintenance plan.
It's strongly recommended that neither logs nor data files are...
August 30, 2008 at 1:58 am
eddy (8/29/2008)
So i can safely create those extra indexes and check each one of them by running a query ( set showplan on)
Not just any query, the queries that your...
August 29, 2008 at 2:26 pm
If you can get the SPID for the process that is running the query that is running slow and then look at the status of that query in the results...
August 29, 2008 at 1:46 pm
Last point. Don't put a shrink database/file task in the maintenance plan.
August 29, 2008 at 1:12 pm
How did you manage to corrupt the files? Short of taking a hex editor to them, it shouldn't be possible for you to corrupt a file.
August 29, 2008 at 1:12 pm
Prints are buffered and are not returned the the client immediatly. While I've never seen multiple prints out of order, I have seen them greatly delayed. Try replacing the print...
August 29, 2008 at 1:04 pm
Very strange.
Is the invoice verification using linked servers by any chance?
August 29, 2008 at 12:59 pm
Right now I'm thinking it's poossibly got something to do with compile time. Perhaps try getting the admins to run a trace on Cache hit, cache miss, cache insert, RPC...
August 29, 2008 at 12:57 pm
Ah. Fun.
How is the query constructed on the front end? Parmaterised (I somehow doubt) or concatenated strings?
August 29, 2008 at 10:13 am
I assume this is in a stored proc. Can you post the rest of the proc please?
August 29, 2008 at 9:14 am
One thing that may help.
convert(varchar,tab.TreatmenRegimenNumber)+ ','+convert(varchar,tab.RevisionNumber)
not in
(
select convert(varchar,TreatmenRegimenNumber)+ ','+ convert(varchar,RevisionNumber)
from TreatmentRegimen TR
...
August 29, 2008 at 9:12 am
Vika (8/29/2008)
The database suppose to be setup on the disk where everything gets backed up automatically but following the written instructions (that had an error in the path!) he set...
August 29, 2008 at 8:54 am
It's usually a good idea to create indexes on foreign key columns, however you should check and make sure that SQL is actually using them. You can do that by...
August 29, 2008 at 8:27 am
Viewing 15 posts - 44,791 through 44,805 (of 49,571 total)