S
sqluser1349
Guest
We are trying to import a table from a international client. Their data has a table description file and then each individual table has a file for its records.
Each file is in a .amfm format. It is not possible to vpn or set up a odbc connection.
The table description is as follows:
{ TABLE "***".businesssize row size = 100 number of columns = 4 index size = 0
}
create table "***".businesssize
(
id integer,
employees varchar(50),
city char(30),
job_code char(15)
) extent size 16 next size 16 lock mode page;
revoke all on "***".businesssize from "public";
The "***" is the name of the comapny. It can be replaced with any string. Any Ideas?
Each file is in a .amfm format. It is not possible to vpn or set up a odbc connection.
The table description is as follows:
{ TABLE "***".businesssize row size = 100 number of columns = 4 index size = 0
}
create table "***".businesssize
(
id integer,
employees varchar(50),
city char(30),
job_code char(15)
) extent size 16 next size 16 lock mode page;
revoke all on "***".businesssize from "public";
The "***" is the name of the comapny. It can be replaced with any string. Any Ideas?