各位高手 我有一个很棘手的问题 怎么在一个小时内往SQL SEVER里插入6万条数据啊 
设计一个什么程序可以实现这个功能啊

解决方案 »

  1.   

    不要一个小时吧。insert into tab select 1 直接找个表导入就好了
      

  2.   

     HttpCookie cook = new HttpCookie("Email");
                    cook.Value = appUser.Email;
                    /* 设置为永不过期 */
                    cook.Expires = DateTime.MaxValue;
                    this.Response.Cookies.Add(cook);                cook = new HttpCookie("Password");
                    cook.Value = appUser.Password;
                    /* 设置为永不过期 */
                    cook.Expires = DateTime.MaxValue;
                    this.Response.Cookies.Add(cook);