Viewing 11 posts - 1 through 11 (of 11 total)
Hi All ,
fitst you need to disable all maintenance plan , perhaps your rebound or organise process all table without considering fragmentation .
also tha sal server audit can help...
June 15, 2024 at 5:10 pm
hi All,
When maintenace tables is running it will update stats in these DMV, that is not a production usage , we can't eliminate it , so we can't declare the...
March 19, 2024 at 10:41 am
March 1, 2018 at 6:32 am
i'am sorry, it is just one error of copy/past the good script is:
/*
Author: rabie harriga
Version:SQL 2005, 2008, 2008 R2
Decription:This Script allows you to determine the list of unused indexes in...
February 24, 2011 at 5:58 am
select object_name (i.object_id) as NomTable,isnull( i.name,'HEAP') as IndexName
from sys.objects o inner join sys.indexes i
ON i.[object_id] = o.[object_id] left join
sys.dm_db_index_usage_stats s
on i.index_id = s.index_id and s.object_id = i.object_id
where object_name...
February 23, 2011 at 8:28 am
the duration is the time CPU end the time for read or write from buffer or from disk.
You can capture the excution plan for see the difference between plans.
If the...
March 30, 2010 at 5:45 am
this way is not exact, because when you type sqlcmd -E you will obtain à time out for sql connexion because your account dont existe in sys.logins.
In the case when...
November 3, 2009 at 8:42 am
this way is not exact, because when you type sqlcmd -E you will obtain à time out for sql connexion because your account dont existe in sys.logins.
In the case when...
November 3, 2009 at 8:41 am
this way is not exact, because when you type sqlcmd -E you will obtain à time out for sql connexion because your account dont existe in sys.logins.
In the case when...
November 3, 2009 at 8:39 am
this way is not good, because yoiu dont have the permission to connect just with sqlcmd -E, this way is not excat.
You must add your login to local group created...
November 3, 2009 at 4:31 am
Viewing 11 posts - 1 through 11 (of 11 total)