declare l_dp_handle number; begin -- Open a schema import job. l_dp_handle := dbms_datapump.open( operation => 'IMPORT', job_mode => 'FULL', remote_link => NULL, job_name => 'PDB1_IMPORT', version => 'LATEST'); -- Specify the dump file name and directory object name. dbms...