Hi, I hope someone out there can help with this question.
I have an oracle table, geo_details, that I am creating a live connection to through MapInfo. The table contains these columns:
Recid,
entityID,
sourceID,
Lat,
Long
with entityID and SourceID being primary keys and recid set by our database team to auto-increment.
When creating the ODBC table in MapInfo I am only selecting these columns:
entityID,
SourceID,
Lat,
Long
However, when the ODBC table is created it is bringing in the Recid column and messing up the insert I am trying to do.
this is my connection string:
Register Table "Geo_details" TYPE ODBC TABLE "Select ""ENTITYID"",""SOURCEID"",""Y_LAT"",""X_LONG"" From ""GIS"".""GEO_DETAILS""" CONNECTION "DSN=xxx;UID=xxx;PWD=xxxxxx;" toolkit "ODBC" Autokey OFF Versioned Off Workspace "" ParentWorkspace "" Into "C:\Temp\Geo_details.tab"
Is there a way to make sure the recID column is not being brought into my table?
Thanks,
Peter