V
viki
Hi ,
I want to copy a dbf file to the the access database.I thought of two
solutions
1. Copy the dbf to the access db by the query
SELECT * into dest_table from [source.dbf] in 'source folder'
this does not work out, it gave me the error that u have no
permission
2.create a table with the same structure of dbf file and then insert
the rows using oledbcommandbuilder update commands
i tried to create the table by the following query
create table temp (test1 int,test2 varchar(40))
it gave a error message "you donot have the necessary permission to
use the 'temp' object."
I believe there is something to do with the permission or something
other than that could some one tell me what is the solution..
Thanks in advance,
Viki
I want to copy a dbf file to the the access database.I thought of two
solutions
1. Copy the dbf to the access db by the query
SELECT * into dest_table from [source.dbf] in 'source folder'
this does not work out, it gave me the error that u have no
permission
2.create a table with the same structure of dbf file and then insert
the rows using oledbcommandbuilder update commands
i tried to create the table by the following query
create table temp (test1 int,test2 varchar(40))
it gave a error message "you donot have the necessary permission to
use the 'temp' object."
I believe there is something to do with the permission or something
other than that could some one tell me what is the solution..
Thanks in advance,
Viki