DBA Check List


Any DBA must now :

How to become As DBA ?

What is General DBA Best Practices ?

What DBA do Day-to-Day

And more tips like Installation , Upgrade , maintenance , performance , High Availibilty , and other Services (SSIS,SSAS,SSRS)

So if you need to know more about this Check this Link is very useful to any DBA (SQL Server , Or Oracle )

https://www.simple-talk.com/sql/database-administration/brads-sure-dba-checklist/

SQL Server Configuration Manger Error


Today i face error when i need to check my SQL Server Configuration manger for SQL Server 2008R2 Sp1 When the SQL Server Services “Remote Procedure Call Failed”

Error :

SQLConfig Error

 

How to Fix this Error ?

I try more salutation but the best one of them is “Upgrade SQL Server Services from SP1 to SP2” after i run this update this error is go out to download this Update go to this link

http://www.microsoft.com/en-us/download/details.aspx?id=30437

 

 

Disable or Enable Trace File by T-SQL


T0 Disable or Enable Trace File 0 = Disable , 1 = Enable 

 

EXEC master.dbo.sp_configure ‘allow updates’, 1;
GO
EXEC master.dbo.sp_configure ‘show advanced options’, 0;  *********************** Change here
GO
EXEC master.dbo.sp_configure ‘default trace enabled’, 0;
GO
RECONFIGURE WITH OVERRIDE;
GO
EXEC master.dbo.sp_configure ‘show advanced options’, 1;
GO
EXEC master.dbo.sp_configure ‘allow updates’, 0;
GO