How do you run an event procedure on the server?

B

Betacon

I have a large table on an SQL Server 2000. I have an update form on the Client populated with data from that table. I have an involved Find event procedure (activated with a button on the form) which is to repopulate the form with the data of the matching record. When I use a link to the server table, the Find routine is very slow. While I know how to run queries on the server (and even pass-through queries), this Find procedure does not lend itself well to translation into a query. What is the best way to have the actual searching done on the server so as to speed up the process

Thanks.
 
C

CSmith

Hi,

Just wondering if you have your index (or indices) included in your
pass-through SQL call along with a good / fast filtering tool like the In
clause (not the Where clause)?

--
Calvin Smith
http://www.CalvinSmithSoftware.com - Automation Code
http://www.SpanglesNY.com - Fendi, Prada, Von Dutch, etc - 60% off


Betacon said:
I have a large table on an SQL Server 2000. I have an update form on the
Client populated with data from that table. I have an involved Find event
procedure (activated with a button on the form) which is to repopulate the
form with the data of the matching record. When I use a link to the server
table, the Find routine is very slow. While I know how to run queries on the
server (and even pass-through queries), this Find procedure does not lend
itself well to translation into a query. What is the best way to have the
actual searching done on the server so as to speed up the process?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top