U kunt BCP bulkexport proberen, maar 2008R2
U moet de parameter -w in het bcp-hulpprogramma toevoegen om aan te geven dat de codering UTF16 is.
DECLARE @cmd varchar(1000)
SET @cmd = 'bcp "select * from table" queryout "d:\file.csv" -w -T -t; -Slocalhost'
EXEC xp_cmdshell @cmd
Probeer dan csv te openen in Excel