S
Steve Roberts
Access 2003 + SQL Server 7.0
I need to open a FoxPro .DBF file, Delete the entire contents then Import
new data into it and close the DBF. I really don't need a full time link to
the file. Is there a way to do this using a Stored Procedure or VBA?
The 2 existing Queries from a .mdb file that I have are below just for
clarity.
I need to Connect to \\Printsvr\pcounter\PPOPUP.DBF
Then Delete the Contents of the current File
DELETE PPOPUP.*
FROM PPOPUP;
Then Insert New Data.
INSERT INTO PPOPUP
SELECT [Advantage Projects].*
FROM [Advantage Projects];
Thanks in advance for your suggestions
Steve
I need to open a FoxPro .DBF file, Delete the entire contents then Import
new data into it and close the DBF. I really don't need a full time link to
the file. Is there a way to do this using a Stored Procedure or VBA?
The 2 existing Queries from a .mdb file that I have are below just for
clarity.
I need to Connect to \\Printsvr\pcounter\PPOPUP.DBF
Then Delete the Contents of the current File
DELETE PPOPUP.*
FROM PPOPUP;
Then Insert New Data.
INSERT INTO PPOPUP
SELECT [Advantage Projects].*
FROM [Advantage Projects];
Thanks in advance for your suggestions
Steve