Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
shishirnaik55
Starting Member
2 Posts |
Posted - 2010-03-26 : 03:55:29
|
| to all expertsplease give some expert opinion about my problemmy db table1 is having 4 columns c1,numeric,10(size)c2,textc3,textc4,char(50)table 2 c1,char,50c2,numeric,10c3,numeric,10i am running update querycreate index indx_t1 on t1(c1,c4)update t1 set t1.c4=t2.c1 from t1,t2 where t1.c1 between t2.c2 and t2.c3my problem is number of records is 20 lakhit is taking hell lot of time around 5 hoursam i doing anything wrong, or there any other way to do thisplease help me out |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2010-03-26 : 11:24:05
|
| are you using sql 2005?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
 |
|
|
shishirnaik55
Starting Member
2 Posts |
Posted - 2010-03-27 : 01:05:23
|
[quote]Originally posted by visakh16 are you using sql 2005?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/no i amusing sql 2000 |
 |
|
|
|
|
|
|
|