-yr4def performance benefit?

I'm currently working on a program that dumps the contents of a database table into a delimited file for an external system which requires all dates to have a 4-digit year...
Code:
for each tablename:
    put stream sExtract unformatted
        tablename.integerfield "|"
        tablename.characterfield "|"
        tablename.datefield format "99/99/9999" "|"
        ...
        skip.
end.
Would I get any performance benefit by using the -yr4def client session parameter and removing the format option on my date fields?
 

TomBascom

Curmudgeon
It would be an interesting thing to test.

My guess: probably only a very minor improvement and at the risk that some day in the future someone will run the program without that parameter being set.

BTW, that should be "for each tablename NO-LOCK:..."
 
Top