Viewing 15 posts - 1,636 through 1,650 (of 2,062 total)
I don't know (perhaps detaching/attaching the database)
February 9, 2006 at 10:09 am
I've also this message when a part of the database (like an index) became corrupt.
February 9, 2006 at 4:39 am
in sql 2000 you can find the job histories & outcomes
in msdb.dbo.sysjobhistory
February 9, 2006 at 4:36 am
the count(*) might cause a table scan
the exist clause stops when it finds one
February 9, 2006 at 4:33 am
Best bet is contacting the administrator of server A (could be a security setting)
February 9, 2006 at 4:31 am
Can you give a small example with pseudo values?
DELETE ProxyPM
FROM ProxyPM
INNER JOIN PM
ON PM.PMEmp=ProxyPM.PMEmp /*same project manager*/
AND PM.Projectcode=ProxyPM.Projectcode /*same project*/
February 8, 2006 at 11:08 am
As long the database doesn't change in size (have to check this theory) or is not closed the modified attribute isn't been set (otherwise each write command would cause the...
February 8, 2006 at 10:51 am
Does changing the flow help? There is no need to keep objSQLServer open whilst writing your log.
Call writeerrortolog("Cannot connect to " & rstSQLInstances("ServerName") , Err.Number)
objSQLServer.Disconnect
set objSQLServer =...
February 8, 2006 at 10:44 am
sp_recompile can be necessary when the first run of the stored procedure is with atypical values which may be bad for subsequent runs.
sp_recompiles only targets one object. All objects that...
February 8, 2006 at 10:38 am
Each time the underlying tables are dml modified the view needs to be recompiled.
Why are you using drop view instead of alter view?
February 8, 2006 at 10:26 am
You're welcome.
Make sure the antivirus isn't scanning the ldf, mdf,ndf files.
February 6, 2006 at 3:46 pm
That is really weird.
What is the service pack of sql server & your client tools?
OS is up to date?
Any antivirus software present?
February 6, 2006 at 2:37 pm
Viewing 15 posts - 1,636 through 1,650 (of 2,062 total)