SQLServer2005导入导出txt文件

对于SQLServer2008及以上版本,可通过导入和导出工具,实现txt文件的导入和导出。而对于SQLServer2005及以下版本,可通过sql脚本实现。

EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'xp_cmdshell', 1
GO
RECONFIGURE
GO
/*导入txt*/
EXEC dbname..xp_cmdshell 'BCP dbname..tablename in c:\1.txt -c -t -U sa -P password'
/*导出txt*/
EXEC dbname..xp_cmdshell 'BCP dbname..tablename out c:\1.txt -c -t -U sa -P password'
...

你可能感兴趣的:(SQLServer2005导入导出txt文件)