saeid0034 wrote:
one other thing, as you know file size repeat two time in uexp files
how can I update both of them in re-import
That's the only problem of the reimport feature when we have a table supporting compression and we meed a comparison of the compressed and uncompressed size for handling the file.
Usually there is often another field saying if a file is compressed, probably also here, but in case there is none the following solution may work:
Code:
get ZSIZE long
get SIZE long
comtype copy
clog "output.dat" OFFSET ZSIZE SIZE
There are two different variables because if you use the same, only the second field will be changed.
Another solution is using the optional field of Log instead of CLog:
Code:
get ZSIZE long
get SIZE long
log "output.dat" 8 SIZE 0 SIZE
It's a particular situation that can't be automatically handled by quickbms because the reimport mode just work on the arguments of Log and Clog.