Viewing 15 posts - 106 through 120 (of 1,364 total)
Could you please shar that script, I am in need of it.
Thanks,
MJ
April 22, 2010 at 3:06 am
April 22, 2010 at 2:18 am
The example below transfers ownership of the Database Mirroring endpoint to ‘sa’:
USE master
GO
ALTER AUTHORIZATION ON ENDPOINT::Mirroring TO [sa]
GO
April 22, 2010 at 2:06 am
Did you get a chance to try wht I suggested?
MJ
April 21, 2010 at 1:44 pm
What is the size of larget index present in the database?
MJ
April 21, 2010 at 10:29 am
Save output of following query and go for password change for sa.
Query 1:
select password,name from master.dbo.sysxlogins
where name='sa'
In case, u need to reset it use the below mentioned code(All at...
April 21, 2010 at 3:58 am
Take frequent log backups if that is the case and rebuild indexes one by one and only if its needed(for e.g. frag.>30 and indx pages >1000 or so).
April 20, 2010 at 10:37 am
It will release it only if required(for example, OS starving for memory --Experts plz comment).
To monitor memory usage use DBCC Memorystatus(http://support.microsoft.com/kb/271624).
Also, DMV named 'sys.dm_os_memory_clerks' could be used too.
MJ
April 16, 2010 at 1:01 pm
chandrakant_gaurav (4/15/2010)
sp_browsereplcmds is not a recognised command in SQL server 2000. It works on 2005.
Refer-->http://msdn.microsoft.com/en-us/library/aa239422(SQL.80).aspx
April 16, 2010 at 12:33 pm
I think you just want to install client components.
http://msdn.microsoft.com/en-us/library/ms143219.aspx
MJ
April 16, 2010 at 10:49 am
If you are considering a single query then try out using MAXDOP hint if that helps.
MJ
April 16, 2010 at 9:34 am
If inserts are slowing down then as suggested above check for indexes on base tables. They must be useful and any uncecessary/duplicate indexes needs to be dropped.
April 16, 2010 at 8:55 am
Unless there is any auditing solution in place or table has any such date columns its difficult to fetch that.
MJ
April 16, 2010 at 8:48 am
As per http://www.sql-server-performance.com/faq/domain_controller_performance_p1.aspx
1.
While SQL Server can run on a domain controller, it is not recommended if you are seeking the best performance. For best performance of SQL Server,...
April 15, 2010 at 3:54 pm
Trace flag referred to by Steve should work in 2005 as per http://www.mssqltips.com/tip.asp?tip=1457
MJ
April 15, 2010 at 3:44 pm
Viewing 15 posts - 106 through 120 (of 1,364 total)