Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Tuesday, February 28, 2012

mofcomp "C:\Program Files (x86)\Microsoft SQL Server\100\Shared\sqlmgmproviderxpsp2up.mof"

Sql Server Error :


Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 servers with SQL Server Configuration Manager. The specified module could not be found. [0x8007007e]

Inline image 1

Solution :

 
Start ==> Run => Type below command  

 mofcomp "C:\Program Files (x86)\Microsoft SQL Server\100\Shared\sqlmgmproviderxpsp2up.mof"

Thanks

Friday, February 10, 2012

Reset Identity Value Using Sql Query

Reset Identity Value Using Sql  Query 


DBCC CHECKIDENT('UserTable' , RESEED, 0)

Database Go Online and OFFline using Query

Database GO Online:

ALTER DATABASE DBTest2 SET ONLINE

Database Go Offline
 
ALTER DATABASE DBTest2 SET OFFLINE