db2move DBSOURCE export -aw -l lobs -sn schema1
Importdb2move DBTARGET import -io replace_create -l lobs
db2move dbsrc COPY -sn schema1 -co TARGET_DB dbtgt USER myuser1 USING mypass1
SCHEMA_MAP ((schema1,newschema1)) TABLESPACE_MAP ((ts1,ts2), SYS_ANY))
CALL SYSPROC.ADMIN_COPY_SCHEMA('SOURCE_SCHEMA', 'TARGET_SCHEMA',
'COPY', NULL, 'SOURCETS1 , SOURCETS2', 'TARGETTS1, TARGETTS2,
SYS_ANY', 'ERRORSCHEMA', 'ERRORNAME') ;
The DB2 move utility can't be used to move a database to another server.
The traditional way to accomplish that move is with a full backup on the source server and a restore on the target server.
Kent