Gerando arquivo com BCP incluindo data no nome do arquivo.
Pessoal segue script de como gerar um arquivo formatado com BCP colocando o nome com datano arquivo.Maiores informações:https://docs.microsoft.com/pt-br/sql/tools/bcp-utility?view=sql-server-ver15Guys follow script how to generate a file formatted with BCP putting the namewithdatein the file.More information:https://docs.microsoft.com/en-us/sql/tools/bcp-utility?view=sql-server-ver15declare @sql varchar(8000)select @sql = 'bcp "select 1" queryout "\\192.168.0.45\temp\ARQUIVOTESTE'+REPLACE(REPLACE(CONVERT(VARCHAR,GETDATE(),120),' ','_'),':','_')+'.csv" -c -t, -T -S '+ @@servernameexec xp_cmdshell @sql