관리 메뉴

why don't do your best

SQL 노출영역 설정 본문

Database/MSSQL

SQL 노출영역 설정

빅셔 2010. 9. 13. 16:29

EXEC sp_configure 'show advanced options', 1
GO
-- To update the currently configured value for advanced options.
RECONFIGURE
GO
-- To enable the feature.
EXEC sp_configure 'xp_cmdshell', 1
GO
-- To update the currently configured value for this feature.
RECONFIGURE
GO

Comments