站长论坛
标题:
SQL导出到文本,文本导入到表
[打印本页]
作者:
lbsong
时间:
2008-12-24 10:59
标题:
SQL导出到文本,文本导入到表
SQL导出到文本:
exec master..xp_cmdshell ' bcp "库名..表名" out "文件路径和名称" -c -U "用户名" -P "密码" '
例如:
exec master..xp_cmdshell ' bcp "Northwind..Region" out "d:\tt.txt" -c -U "sa" -P "sa" '
SQL文本导入到表
exec master..xp_cmdshell ' bcp "库名..表名" in "文件路径和名称" -c -U "用户名" -P "密码" '
例如:
exec master..xp_cmdshell ' bcp "Northwind..tb" in "d:\tt.txt" -c -U "sa" -P "sa" '
欢迎光临 站长论坛 (https://tzlink.com/bbs/)
Powered by Discuz! X3.2