sql >> Database >  >> RDS >> Sqlserver

'xp_cmdshell' SQL Server inschakelen

U moet het inschakelen. Bekijk het gedeelte Toestemming van de xp_cmdshell MSDN-documenten :

http://msdn.microsoft.com/en-us/library/ms190693 .aspx :

-- To allow advanced options to be changed.
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


  1. Laravel:PDOException:kon stuurprogramma niet vinden

  2. SQL gebruiken als een xlookup

  3. Oracle FOUT:ORA-00900:ongeldige SQL-instructie

  4. Lijst met tabelopmerkingen ophalen in PostgreSQL