Hi, dbexport and dbimport are migration tools and not backup utilities. What you can do is install a exact copy of a database engine on another server with exactly the same dbspaces and chunks. The contents of all databases on the first server can be backed up (to file or tape) with the ontape (-s -L 0 for a level 0 backup) command. On the second server this backup can be imported with the same ontape (-r) command and a complete copy including synonims and data exists on the second server.
For duplicating data from one server to another I only can think of (beside scripts and files) executing SQL DML statements from the source server on a remote database with
Code:
CLOSE DATABASE
DATABASE databasename@servername
This way the statements are interpreted by the remote engine and stored regardless of the fysical configuration differences.
Regards,
Hans