Skip to main content

Hi,

I´m record data from DWG files, but there is some versions of the same file...for example: V1, V2, V3...

What the best way for extract the more recent version by file? I need to create one field called last_date? How I can to extract the last date for example?

Thank´s

Hi @mr_fme, if you can consider the records having the latest "last_date" as the recent version ones, you can extract them by setting "WHERE Clause" parameter in the PostGIS reader feature type. For example:

last_date = (select max(last_date) from my_table)


Reply