Jeff, Neil, John, and Duane,
Well, looks like I'm getting closer. I queried the data in Excel (for some
reason when I select the Progress table in Excel when I get external data, I
can see all the columns), added the columns I wanted, and returned the data
I was looking for. I took the SQL from Excel and pasted it into an Access
Pass Through and got what I needed. Now, I just have to hammer on it and
make sure that I'm really getting the all the correct data. To me, the SQL
looks odd, as though it's adding extra information. The SQL generated by
Excel which appears to work in Access looks like this:
////////////////////////////////////////////////////////////////////////////
SELECT jc_job_0.co, jc_job_0.div, jc_job_0.ctr
FROM PUB.jc_job jc_job_0
////////////////////////////////////////////////////////////////////////////
What I would have expected is:
///////////////////////////////////////////////////////////////
SELECT jc_job.co, jc_job.div, jc_job.ctr
FROM PUB.jc_job
///////////////////////////////////////////////////////////////
Anyway, I'll test and hopefully this is what I need. Thanks again for all
the help; I really appreciate you guys taking time out of your days to help
me.
Tony