EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC SP_CONFIGURE 'Agent XPs', 1;
GO
RECONFIGURE;
GO
W3D Problems
world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
Sunday, October 9, 2022
Enable Agent XPS using T SQL
Saturday, September 4, 2021
Sunday, August 29, 2021
How to change SQL Server to Mixed Mode Authentication using t sql
EXEC xp_instance_regwrite
N'HKEY_LOCAL_MACHINE'
, N'Software\Microsoft\MSSQLServer\MSSQLServer'
, N'LoginMode'
, REG_DWORD, 2
go
restart sql server
Monday, April 1, 2019
How to Get DATABASE OUT OF SUSPECT MODE MS SQL SERVER
ALTER DATABASE DBName SET EMERGENCY DBCC CHECKDB('DBName') ALTER DATABASE DBName SET SINGLE_USER WITH ROLLBACK IMMEDIATE DBCC CHECKDB('DBName', REPAIR_ALLOW_DATA_LOSS) ALTER DATABASE DBName SET MULTI_USER
Monday, August 27, 2018
Error message “Explorer.exe - No such interface supported” in Windows 7
1. Click Start. In the Search box, type CMD. At the top of the window, right-click the cmd icon and choose Run as Administrator.
2. At the prompt, type in FOR /R C:\ %G IN (*.dll) DO "%systemroot%\system32\regsvr32.exe" /s "%G" and press.
This will take several minutes to complete. There will be several C+ Runtime errors that will appear, as well as the system slowing down. Once complete, restart the system and test.
2. At the prompt, type in FOR /R C:\ %G IN (*.dll) DO "%systemroot%\system32\regsvr32.exe" /s "%G" and press
This will take several minutes to complete. There will be several C+ Runtime errors that will appear, as well as the system slowing down. Once complete, restart the system and test.
Subscribe to:
Posts (Atom)