首先不得不提一下我认识到Express不行了 呵呵 确实 对比起来 问题太多 废话不多说

给两个方法:

1.DTS处理方法

     我测试失败了,不过应该是可以的;给个链接吧
     http://tech.sina.com.cn/s/2008-08-08/08112380032.shtml

2.bcp

     exec master..xp_cmdshell 'bcp "SQL查询语句" queryout 导出路径 -c -q -S "服务器" -U "登录名" -P "密码"'
     如果遇到被阻止 没法调用xp_cmdshellde话,执行     

EXEC sp_configure 'show advanced options'1 
GO 
RECONFIGURE 
GO 
EXEC sp_configure 
'xp_cmdshell'1
GO 
EXEC sp_configure 
'show advanced options'0
GO
RECONFIGURE 
GO