Bonjour,
J'ai un job qui fonctionne directement sur mon instance après quand je passe par mon schedule $U j'ai ce message:
1 2
| Msg 229, Level 14, State 5, Server MONINSTANCE, Procedure xp_cmdshell, Line 1
The EXECUTE permission was denied on the object 'xp_cmdshell', database 'mssqlsystemresource', schema 'sys'. |
J'ai fait:
1 2 3 4 5 6 7 8
| EXEC sp_configure 'show advanced options', 1
RECONFIGURE
GO
-- Enable the xp_cmdshell procedure
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE
GO |
Puis:
GRANT EXECUTE ON xp_cmdshell TO [AD\MONLOGIN]
Mais le message persiste toujours ....
Merci.
A+
Partager