I am new to oracle database and using 19c version. I need to know if zstd algorithm can be implemented along with oracle advanced compression. I am able to implement zstd algorithm at RMAN level. Is there any way to choose the compression algorithm when using advanced compression in oracle? Thanks in advance!
RMAN COMMAND OUTPUT FOR ENABLING ZSTD:
RMAN> CONFIGURE COMPRESSION ALGORITHM 'ZSTD'
2> ;
new RMAN configuration parameters:
CONFIGURE COMPRESSION ALGORITHM 'ZSTD' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE;
new RMAN configuration parameters are successfully stored
RMAN> show COMPRESSION ALGORITHM
2> ;
RMAN configuration parameters for database with db_unique_name DB9ZX are:
CONFIGURE COMPRESSION ALGORITHM 'ZSTD' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE;
EXPECTING FOR SYNTAX:
SQL<>alter table xtbl row store compress advanced;
Table altered.
SQL<>alter table xtbl row store compress advanced zstd;
alter table xtbl row store compress advanced zstd
*
ERROR at line 1:
ORA-01735: invalid ALTER TABLE option
SQL<>alter table xtbl row store compress zstd advanced;
alter table xtbl row store compress zstd advanced
*
ERROR at line 1:
ORA-01735: invalid ALTER TABLE option