Re: query difference
- From: "Larry Linson" <bouncer@xxxxxxxxxxxxx>
- Date: Tue, 29 Apr 2008 20:18:13 GMT
"bobh" <vulcaned@xxxxxxxxx> wrote
I'm talking about a JET backend............... so, are you
saying that if I only select 5 fields(of a 35 field long
record in a JET back-end table) in my query that it will
bring back all fields of the records or will it only bring
back the selected fields of the records??
I thought I was clear in saying that the Jet database engine resides and
executes on the user's machine, and that is where all extraction and
manipulation is done. Yes, you are correct: it will bring back all fields
of the entire record (and nearby records in the disk "page") and then,
locally, extract the 5 fields you requested. It uses the remote backend
just as it would an .MDB file on the local hard drive, only a lot slower.
Even if you have Jet installed on the back-end, it is not built to operate
as a server, so loading it there would not help.
Please note that I did NOT say, it brings back the entire database over the
network.
If you want the field extraction to be done on the server, so only the
requested fields will be returned across the network, you need to be using a
server DB for the back end: MS SQL Server, MySQL, PostgreSQL, Informix, one
of the Sybase products, Oracle, or one of many others. In that case, you
request the data from the server DB, it does the retrieval, manipulation,
and extraction, and then (mostly) sends you just what you asked for (there
are some minor exceptions if you are linked via Jet and ODBC).
Larry Linson
Microsoft Office Access MVP
.
- Follow-Ups:
- Re: query difference
- From: Bruce
- Re: query difference
- References:
- query difference
- From: bobh
- Re: query difference
- From: Larry Linson
- Re: query difference
- From: bobh
- query difference
- Prev by Date: Re: How to create a form based on a crosstab query? (I don't know how many columns there will be!)
- Next by Date: How to populate sequential numbers in a field using SQL or VBA?
- Previous by thread: Re: query difference
- Next by thread: Re: query difference
- Index(es):
Relevant Pages
|