1

I have a table that contain several columns, each has their own data. then, someone have made some change in the data (just a little one data editing).

How do I know later what data have been edited/changed using MapInfo SQL Query?

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Sep 3, 2013 at 9:10
0

1 Answer 1

1

You would have to refer to a backed up version of the table. Assuming you have a backup then if you loaded the backup and current version of the table you could do something like

select * from <currenttable>,<backuptable> where <currenttable>.<uniquekey> = <backuptable>.<uniquekey> and <currenttable>.<col1> <> <backuptable>.<col1> into selection 

Once you've got the syntax down you could create a MBX file to iterate through the columns. Other than that MapInfo doesn't do versioning in the same way that ArcSDE does for example.

answered Sep 3, 2013 at 11:55
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.