I am trying to replicate from one linux server to another. Both running version 7.3 of sapdb. Source server is redhat 7.2, target server is redaht 8.0.
Running repmcli -u user,pass -d DBNAME -b export.dat works fine, with export.dat containing the following: // CATALOGEXTRACT USER OUTFILE '/usr/catalog.outfile' // TABLEEXTRACT USER OUTFILE '/usr/table.outfile' This generated 3 files, one for the catalog and two for the table. The table .0001 file is just over 50mb in size. It exported about 20 tables. On the target server, I ran repmcli -u user,pass -d DBNAME -b import.dat -E 0 where import.dat contains the following: // TABLELOAD USER INFILE '/usr/table.outfile' OUTFILE 'restart.dat' // CATALOGLOAD USER INFILE '/usr/catalog.outfile' This generated the following message on the console: Opened connection to REPLICATION SERVER at node local host. REPLICATION SERVER Log File: '/usr/sapdb/indep_data/wrk/repserver.log' User USER connected to database DBNAME on local host. TABLELOAD USER INFILE '/usr/table.outfile' OUTFILE 'restart.dat' Successfully executed CATALOGLOAD USER INFILE '/usr/catalog.outfile' Successfull The problem is, it imported one complete table, and the schema for the second table (no data), and that is all that is in the target database for that user. Following is the contents of repserver.log. // M ReplMan 7.3.0 Build 029-000-087-816 // * // M Starting protocol at 2003020600115001 // * // * // * // M START 20030206 00115001 // * set logowner root // * // M START 20030206 00115001 // * set // * // M START 20030206 00115001 // * USE USER "USER" * SERVERDB "DBNAME" // * // M USER: 'USER' on DB: 'DBNAME' // * // M START 20030206 00115001 // * TABLELOAD USER INFILE '/usr/table.outfile' OUTFILE 'restart.dat' // * // M Input data file used: /usr/table.outfile0001 // * // M Sum of loaded tables 1, sum of rejected tables 0 // * // M TABLE LOAD successfully executed // * // M START 20030206 00115001 // * CATALOGLOAD USER INFILE '/usr/catalog.outfile' // * // M Releasing user connection (USER: 'USER'). // * // M Releasing user connection (USER: 'USER'). // *y executed _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
