Thursday 4 February 2010

Configuring Microsoft SQL SERVER to run windows Command Line

---- Pour permettre les changements qu niveau des options avancées
EXEC sp_configure 'show advanced options', 1
GO

-- Valider la modification
RECONFIGURE
GO

-- Activer la communication avec le systeme
EXEC sp_configure 'xp_cmdshell', 1
GO

-- Valider la modification
RECONFIGURE
GO

No comments: