I am a noob trying to get my head around Libre Office and sql. I have some experience with Python and databases in general however not a strong programmer. I'm trying to automate the creation of tables from .dbf address point files as I have 29 council areas that update property info regularly.
I am using the following sql command
CREATE TABLE "tbl_AddPts_Burnie"
("GEOCODE_ID,N,10,0" varchar(255),
"EASTING,N,19,8" int,
"NORTHING,N,19,8" int,
...
"LIST_GUID,C,200" varchar(255))
SELECT *
INTO "tbl_AddPts_Burnie"
FROM "Macintosh HD/Users/Axel/Documents/Work/list_address_points_burnie.dbf"
It is creating the table however I get the following error:
Table not found in statement [SELECT *
INTO "tbl_AddPts_Burnie"
FROM "Macintosh HD/Users/Axel/Documents/LarkCreese/list_address_points_burnie.dbf"]
I figure the file location is no good but am not sure how to define the location properly in MacOSX.
Any ideas? Anyone?
Axel