先写查询语句用来生成批处理文件的内容:
select "bcp CAG.." + name + " out data\" + name + ".bcp -SAUTOJOB -Ucontrolatgate -Pcontrolatgate -c -t ####" from sysobjects where type="U" and name not like
'%10%'
然后把查询的结果拷贝到myout.bat文件中执行
删除多个表中的数据
先生成所有表的删除语句然后再执行
select "delete from " + name from sysobjects where type="U" and name not like '%10%'