Viewing 15 posts - 16 through 30 (of 40 total)
in my job
step 1-- re indexing
EXEC sp_msForEachTable @COMMAND1= 'DBCC DBREINDEX ( "?")'
step 2--- update statistics
DECLARE @table_name varchar(1000),@sql nvarchar(4000) declare c1 cursor for SELECT name FROM sysobjects WHERE xtype...
May 16, 2011 at 6:31 am
But i want to re index all tables in database...
all tables are heavily fragmented
May 16, 2011 at 6:08 am
i have find one job re indexing running on sunday...
that might be the issues...
But how to maintain that data file not to grow
May 16, 2011 at 5:53 am
i have checked it but there is no hidden tasks are running on sunday
i have run profiler also i couldn't find anything on that...
May 16, 2011 at 4:37 am
i have finally finds the problem one of my scheduled job executing below script at every 10 sec so that why cmdshell is disabled
sp_configure 'xp_cmdshell',0
reconfigure
i am disable that job and...
March 30, 2011 at 12:09 am
Sql server 2008 policy is disable.....
but when i enable xp_cmdshell its automatically disable.....
March 29, 2011 at 9:32 pm
how i can see any triggers or notifications......
March 29, 2011 at 10:13 am
i have done this
sp_configure 'xp_cmdshell',1
go
reconfigure with override
certain fraction of seconds its enabled and again its disable
March 29, 2011 at 7:06 am
check what your given credential while setting database profile account. ....
February 25, 2011 at 3:42 am
Its depends upon ur network bandwidth....
February 15, 2011 at 2:31 am
db_datareader you will able to read all tables where as in
db_denydatawriter you are not able to read any tables and does not allow to do insert,delete,update.
January 13, 2011 at 3:39 am
after ur rebuild index/reorganize, you scheduled shrink database log then after take a full database backup
January 13, 2011 at 12:04 am
while installation check whether ur antivirus is blocking some of components.....
January 12, 2011 at 11:57 pm
Viewing 15 posts - 16 through 30 (of 40 total)