campagnolo1
Technical User
Greetings,
complete Access newbie here with a slight problem:
I'm trying to create a table in Access that then I want to run a Crystal Report on. I have linked my Access database to some FoxPro tables and then created 3 queries. The first query uses the linked tables and then creates a table. The second query uses the table created by the first query and creates a second table. The third query uses the second table and creates a third table. That 3rd table is then used by the report. So far all of this works just fine, I even wrote a macro to run all 3 queries in order for easy updating of the data.
Still with me?
Good!
Unfortunately having to create 3 tables (there are other projects where I would have to create 6 to 8 tables) makes the database quite large in size.
My question now: can I either create one large query that accomplishes what I need, or can I create temporary tables (in FoxPro I use Cursors), or is there something I don't know about that can help me accomplish my task?
Just as an example I will post the code for 2 of the queries.
Query 1 uses the linked tables:
Query 2 uses the table created in query 1 and linked tables:
Any help is greatly appreciated!
Cheers,
Chris
complete Access newbie here with a slight problem:
I'm trying to create a table in Access that then I want to run a Crystal Report on. I have linked my Access database to some FoxPro tables and then created 3 queries. The first query uses the linked tables and then creates a table. The second query uses the table created by the first query and creates a second table. The third query uses the second table and creates a third table. That 3rd table is then used by the report. So far all of this works just fine, I even wrote a macro to run all 3 queries in order for easy updating of the data.
Still with me?
Good!
Unfortunately having to create 3 tables (there are other projects where I would have to create 6 to 8 tables) makes the database quite large in size.
My question now: can I either create one large query that accomplishes what I need, or can I create temporary tables (in FoxPro I use Cursors), or is there something I don't know about that can help me accomplish my task?
Just as an example I will post the code for 2 of the queries.
Query 1 uses the linked tables:
Code:
SELECT slheader.Docid, slheader.Ordrstat, slheader.Billto, slheader.Coname, slheader.Doctype, slheader.Salesman, slheader.Donedate, slheader.Terms, slheader.Comment, sllines.Descrip, sllines.Needby, sllines.Lineseq, sllines.Orderqty, sllines.Shipqty, sllines.Item, sllines.Shipfrom, sllines.Delmark, sllines.Linestat, sllines.Picknote, sllines.Linetype, slheader.Custpono, slheader.Billlocn, Left([sllines]![doctype],1)="S" AS Expr1 INTO W1
FROM sllines LEFT JOIN slheader ON (sllines.Docid = slheader.Docid) AND (sllines.Doctype = slheader.Doctype)
WHERE (((slheader.Ordrstat)="A" Or (slheader.Ordrstat)="P") AND ((sllines.Linestat)<>"C")) AND Left(sllines.doctype,1)="S";
Query 2 uses the table created in query 1 and linked tables:
Code:
SELECT w1.*, slcust.Code1, slcust.Crstatus INTO W2
FROM w1 LEFT JOIN slcust ON w1.Billto = slcust.coid AND W1.Billlocn = slcust.Locid;
Any help is greatly appreciated!
Cheers,
Chris