Migrating an Oracle 12c Database to a 18c Pluggable Database in the Oracle Cloud
   Testing transport tablespace - Migrating an Oracle 12c Database to a 18c Pluggable Database in the Oracle Cloud    ++++++++++++++++++++++  On-premises 12cR2 database      ++++++++++++++++++++++     Create a tablespace   CREATE SMALLFILE TABLESPACE TESTTBS       DATAFILE           '/opt/oracle/oradata/TSOC/tstdb01.dbf' SIZE 300M AUTOEXTEND ON NEXT 1 MAXSIZE 500M  SEGMENT SPACE MANAGEMENT AUTO       EXTENT MANAGEMENT LOCAL AUTOALLOCATE;                 Tablespace created.     Create the user test in the tablespace     SYS@TSOC > CREATE USER test IDENTIFIED BY test    DEFAULT TABLESPACE "TESTTBS"   TEMPORARY TABLESPACE "TEMP";  2    3     User created.     SYS@TSOC >  ALTER USER test QUOTA UNLIMITED ON TESTTBS;     User altered.     SYS@TSOC > GRANT CONNECT, RESOURCE to test;     Grant succeeded.          Create a TEST TABLE ...