Hi,
After reading this online article I was wondering, if I create an Access mdb file and use ADO code to retrieve recordsets of data, is it still pulling all the data as noted in the article?
Article URL:
Quote from Article:
Thing is, I want to create an Access database file that has it's tables linked to an Oracle database. It woudl use ADO connections to retrieve recordsets of data. I'm pretty sure when I specify restrictions on a query, it will only return those specified amounts of data.
But what I'm not so sure of is that I also want to incorporate a link to tables from another Access database on a file server. If I query that Access database from the file server using ADO to return a disconnected data set, am I going to be pulling an entire table?
I know about ADP files, but am curious about the scenario above. Any advice or comments would be appreciated.
Regards.
After reading this online article I was wondering, if I create an Access mdb file and use ADO code to retrieve recordsets of data, is it still pulling all the data as noted in the article?
Article URL:
Quote from Article:
Code:
Many people think placing an Access database on a file server magically transforms it into a client-server database. This is far from true! Imagine a customer table with 100,000 rows and the Access application end-user wants to retrieve the five customers located in Alaska. People don't realize that when data is stored in an Access database, all 100,000 rows may be returned to the workstation depending on the design of the table. If you modify this scenario so you use Access as a front-end to data stored in a SQL Server database, you guarantee only the five rows you need are returned.
Thing is, I want to create an Access database file that has it's tables linked to an Oracle database. It woudl use ADO connections to retrieve recordsets of data. I'm pretty sure when I specify restrictions on a query, it will only return those specified amounts of data.
But what I'm not so sure of is that I also want to incorporate a link to tables from another Access database on a file server. If I query that Access database from the file server using ADO to return a disconnected data set, am I going to be pulling an entire table?
I know about ADP files, but am curious about the scenario above. Any advice or comments would be appreciated.
Regards.