Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recordset performance problem.

Status
Not open for further replies.

bwysocki

Programmer
Sep 19, 2001
38
US
Using VC++ 6.0 we are currently writing to a MS SQL Server 7.0 table that we have opened as a snapshot recordset. As more records get put into the table, the performance of our routine goes way down. Is there a way to improve performance with working with big tables? Would dynaset be better than snapshot?

Any help you can give would be appreciated!
 
dear bwysocki,

what amount is 'more'?

a snapshot recordset is actually meant to be a local copy to analyse the data, for update or insert you should prefer a dynamic one .

the performance of a statement often depends on the amount of linked tables involved in the query.

regards Astrid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top