The main problem is that have to be sure that the archived data aren't linked with the current data. You are going to break those links otherwise.
With MySQL you could use another storage engine for archive, then link archive and current with a view. But in Postgres such thing doesn't exists. There is only one storage engine. You could play with compressed table. http://wiki.postgresql.org/wiki/CompressedTables You can also delete old records if you want. -------------------- m2f -------------------- -- http://www.openobject.com/forum/viewtopic.php?p=39081#39081 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman2/listinfo/tinyerp-users
