Re: query difference
- From: Bruce <deluxeinformation@xxxxxxxxx>
- Date: Wed, 30 Apr 2008 08:48:13 -0700 (PDT)
On Apr 29, 3:18 pm, "Larry Linson" <boun...@xxxxxxxxxxxxx> wrote:
"bobh" <vulca...@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
That being said, regardless of what is serving up the data, you are
better off selecting only the fields you need rather than using a
wildcard (*) to pull all of the fields from the table.
Bruce
.
- References:
- query difference
- From: bobh
- Re: query difference
- From: Larry Linson
- Re: query difference
- From: bobh
- Re: query difference
- From: Larry Linson
- query difference
- Prev by Date: Form doesn't open
- Next by Date: Re: Form doesn't open
- Previous by thread: Re: query difference
- Next by thread: How to create a form based on a crosstab query? (I don't know how many columns there will be!)
- Index(es):
Relevant Pages
|