Ĉ¿
Caso apresente o erro
SQL Server blocked access to procedure 'sys.xp_cmdshell' of component 'xp_cmdshell' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'xp_cmdshell' by using sp_configure. For more information about enabling 'xp_cmdshell', search for 'xp_cmdshell' in SQL Server Books Online.
EXEC MASTER..XP_CMDSHELL 'del Caminho_arquivo'
Execute este comando
-- 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
Comandos git do dia a dia
Ĉ¿ #Criando um projeto do zero echo "# UBBOAT_App" >> README.md git init git add README.md git commit -m "first commi...
-
Ĉ¿ RESUMO ORACLE FUNÇÕES DE LINHA • FUNÇÕES DE CARACTERES Ex. 1) LOWER (cadeia) – Converte caracteres alfabéticos em letras minúscul...
-
Ĉ¿ Vou falar um pouco sobre algumas funções de data que podem ser utilizadas no Oracle. O Oracle tem muitas funções para trabalhar com d...
-
Ĉ¿ Bom dia, após algum tempo sem realizar post estou de volta. Agora com foco em SQL SERVER e QLIK VIEW ferramentas que estou trabalhand...