Re: Action pass-through with a form variable Access 2003
- From: Peter Doering <nospam@xxxxxxxxxxx>
- Date: Thu, 31 Jul 2008 00:39:35 +0200
magickarle wrote:
Peter Doering wrote:
magickarlewrote:
Peter Doering wrote:
You cannot create a *local* table using pass-through (PT). If you need
TblTemp in your local mdb the easiest would be a standard query on the
linked table empl_Lst.
If it's not possible to create a local table, then would it be
possible to append to an access table the output of a pass-through
query?
PT means that all control is handed over to the target Server and it
doesn't know about your local tables, so no, you cannot append either.
As mentioned, the easiest way would be to establish a link to the server
table and perform a local query.
You can use the sample to create the link:
|> DoCmd.TransferDatabase acLink, "ODBC Database", _
|> "ODBC;Driver={SQL Server};Server=Instance\YourServer;" & _
|> "Database=YourDB;UID=USERID;PWD=PWD;", _
|> acTable, "empl_Lst", "empl_Lst", , True
Actualy I've found a way:
In the GUI, ...
of Access?
... I've create an action query that uses the pass-through
query.
From there, I can run it: It will run the pass-through as pass-through
and will append (or create) a table.
It will append (or create) a table on the server that you have passed the
query through to.
It is not a "direct data dump" from the pass-through but it does the
job.
Good for you.
--
Peter Doering [MVP Access]
.
- References:
- Action pass-through with a form variable Access 2003
- From: magickarle
- Re: Action pass-through with a form variable Access 2003
- From: Larry Linson
- Re: Action pass-through with a form variable Access 2003
- From: magickarle
- Re: Action pass-through with a form variable Access 2003
- From: magickarle
- Re: Action pass-through with a form variable Access 2003
- From: Larry Linson
- Re: Action pass-through with a form variable Access 2003
- From: magickarle
- Re: Action pass-through with a form variable Access 2003
- From: Peter Doering
- Re: Action pass-through with a form variable Access 2003
- From: magickarle
- Re: Action pass-through with a form variable Access 2003
- From: Peter Doering
- Re: Action pass-through with a form variable Access 2003
- From: magickarle
- Action pass-through with a form variable Access 2003
- Prev by Date: Re: Action pass-through with a form variable Access 2003
- Next by Date: Re: Reducing the List items on a combo
- Previous by thread: Re: Action pass-through with a form variable Access 2003
- Next by thread: Re: Action pass-through with a form variable Access 2003
- Index(es):
Relevant Pages
|