i have an open cursor, on a table :Set @TempTableCursor = Cursor Local FAST_FORWARD For Select [Cmp],[App],[Cmd],[MsgID],[uid],[Date],[Sr],[Ct],[Rec],[E1],[Pr],[OP],[FDate],[R1],[U1],[CP],[Or],[udi2],[Se],[Se1],[Sp],[Cy],[Mt],[Ce],[Ida1],tblRec.Value From TempTable INNER JOIN tblRec ON TempTable.Rec = tblRec.IdOrder By [Date] ASC
the thing is, that 1)there are 60,000 rows in the table2)most of the columns got index on themthe proble is that it takes the Cursor to open almost 2 minutes!!!!i assume that the Order By has an impcat, can it be that the cursor has an impcat too?