Viewing 15 posts - 45,871 through 45,885 (of 49,571 total)
Set the DB to simple recovery mode, like all the others, then do a once-off shrink of the log (just the log) if it's larger than it's supposed to be....
July 9, 2008 at 12:36 am
terry.jago (7/9/2008)
the back up the log with a no_log command
no_log is deprecated in SQL 2005 and not recommended for use. If log backups are not required, then just switch...
July 9, 2008 at 12:17 am
ltoso (7/8/2008)
thanx for the fast reply, i am very new to sql server so can you help me further like
What is the recovery model for this database?
where can check this...
July 9, 2008 at 12:03 am
Leave off the triggers. consider cascading deletes on your foreign key relationships.
July 8, 2008 at 11:57 pm
I spoke with the South African MVP lead back in March on this topic. He said that in his opinion (not an official MS statement) the most important quality is...
July 8, 2008 at 11:54 pm
Try this.
DECLARE @TheDate DATETIME
SET @TheDate = '1994-08-01 00:13:00.000'
select dateadd(dd, datediff(dd,0, @TheDate),0)
July 8, 2008 at 12:38 pm
Is it consistent? Did the data have to be fetched from disk on one? Possible blocking?
July 8, 2008 at 10:59 am
What I suspect is happening is that the cluster service notices that SQL is not responding (IsAlive Check) when SQL hits memory problems and forces a fail-over to the other...
July 8, 2008 at 10:43 am
Graham (7/8/2008)
Thanks for your reply, i appreciate it, will get back to this thread tomorrow when the office is open.
Yes i saw the full scans are pretty high, does...
July 8, 2008 at 10:34 am
sqlservercenter (7/8/2008)
maybe you could consider to shrinke it first,then reindex or reorgnize is ok.
Don't! Shrink! Your! Databases!
tucankur: Have you checked for hardware errors? Reoccuring corruption can indicate a storage...
July 8, 2008 at 10:26 am
Suresh B. (7/8/2008)
Is it possible to have 0 deadlocks in a busy multiuer system?Is it normal to have around 10 deadlocks daily?
It is not normal to have 10 deadlocks a...
July 8, 2008 at 10:14 am
Mani Singh (7/8/2008)
Here the STEPS you should perform.Kill destination connections. (run multiple times)
set Db in single_user mode.
Or just set the database into single user mode with rollback_immediate
July 8, 2008 at 10:12 am
Mani Singh (7/8/2008)
if you see a deadlock that is in place for a long time, make sure, it is not running a HUGE Query.. then kill the SPID associated with...
July 8, 2008 at 10:11 am
And you see the one from reporting services with duration = 60 sec?
Can you perhaps post the query?
July 8, 2008 at 7:54 am
Index placement depends on what queries you have running and what your data distribution looks like. To put it very simply, you create indexes to support queries that you have...
July 8, 2008 at 7:39 am
Viewing 15 posts - 45,871 through 45,885 (of 49,571 total)