Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

transfertext from passthrough query

Status
Not open for further replies.

Crowley16

Technical User
Jan 21, 2004
6,931
GB
I've got a passthrough query which retuns the results of a function from sql server back end.

however when I try to transferText from this query, it says object is not supported.

ideas anyone?

--------------------
Procrastinate Now!
 
Hi,

Don't know why, but maybe this will work:
use the passtrhough query in regular query - and use the regular query in the transfertext?

EasyIT
 
yeah, that's what I've been doing, however this is not a very clean way of doing things and I was wondering if there was a better way to deal with this, i.e. without having to make up a new query...

--------------------
Procrastinate Now!
 
Write it as a nested query?

Code:
Select AliasName.* FROM (
...your passthrough sql...
) AS AliasName

It is just a little extra code in your pass trough query...

EasyIT
 
I've tried that, unfortunately it doesn't work.

it looks like access won't let you do a transfer on any sort of pass through query... :(

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top