Hi all,I have the following trace result generated by SQL server Profiler.I see in the trace a lot thing like the following:declare @P1 intset @P1=180153616declare @P2 intset @P2=1declare @P3 intset @P3=4declare @P4 intset @P4=1exec sp_cursoropen @P1 output, N'SELECT * FROM X400tbl WHERE adr_address=''ADDRESS123''', @P2 output, @P3 output, @P4 outputselect @P1, @P2, @P3, @P4Goexec sp_cursorfetch 180153616, 1, 0, 100Goexec sp_cursorfetch 180153616, 1, 0, 100Goexec sp_cursorfetch 180153616, 8, 1, 100Goexec sp_cursorfetch 180153616, 8, 1, 100Goexec sp_cursorfetch 180153616, 1, 0, 100Goexec sp_cursorfetch 180153616, 1, 0, 100Goexec sp_cursorclose 180153616Goexec sp_cursorclose 180153616Go
do this means that to execute the select statement that there is 9 rounttrips to the server?Can any one exlpain to me what the result of the trace means?