Configuring Oracle XStream
问题 I'm trying to configure Oracle XStream out by official documentation So, shortly, I'm connecting as sysdba sqlplus / as sysdba Then executing commands create create CDB user and give him privileges > CREATE TABLESPACE xstream_tbs DATAFILE '$ORACLE/cdb/orcl/xstream_tbs.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED; > CREATE USER c##xstrmadmin IDENTIFIED BY password DEFAULT TABLESPACE xstream_tbs QUOTA UNLIMITED ON xstream_tbs container=all; > GRANT CREATE SESSION, SET CONTAINER TO c#