当前位置:首页
开发技术指南» 文章正文
    引言:
 

 

 ·图形学    »显示摘要«
    摘要: 我在编图形时,编译,为什么在32真彩色工作正常,而16真彩色却出问题,我又该如何解决? ......
    摘要: /* rand.c: this program seeds the random-number generator * with the time, then displays 10 random integers. */ #include <stdlib.h> #include <stdio.h> #include <time.h> void main......


bcp中如何使用select语句

各位老大:  
          我在用bcp从数据库中提取数据时如果整表提取,用下面语句  
        exec   master..xp_cmdshell   bcp   "mdinfo..student"   out   e:\user\aaa.txt   -c   -q   -S"dataserver"   -U"sa"   -P"me"   速度很快提取全部数据  
   
        但是如果用下面语句  
    exec   master..xp_cmdshell   bcp   "select   student_id,student_name   from   mdinfo..student"   queryout   e:\user\aaa.txt   -c   -q   -S"dataserver"   -U"sa"   -P"me"   则速度很慢,请教各位是什么原因,需要如何修改  
   
   
 

NO.1   作者: SophiaWang

好象只能这样

NO.2   作者: yoki

好像第2种用了中间处理,所以慢

NO.3   作者: pengdali

select   student_id,student_name   into   ##temp   from   mdinfo..student  
  exec   master..xp_cmdshell   bcp   "tempdb..##temp"   out   e:\user\aaa.txt   -c   -q   -S"dataserver"   -U"sa"   -P"me"

NO.4   作者: psxfghost

打错了,小改一下:  
  drop   table   tempdb..##temp  
  ^_^  
 


    摘要: 请问怎样在一个image的图片中划分几个热区,就是点图片的不同地方就触发不同的事件。thanks!在线等。 ......
» 本期热门文章:

©2000-2007 All Rights Reserved. 最佳浏览:1024X768 MSIE