AIX unzip I found there's no unzip utility available in AIX 7.2. $ which unzip which: 0652-141 There is no unzip in /usr/bin /etc /usr/sbin… Read More »How AIX UNZIP Files
You can enable the compression feature of RMAN by the following 2 ways: One time setting RMAN> show all; RMAN configuration parameters for database with… Read More »How RMAN Compressed Backupset
Two steps to make your table compressed.Set the server INNODB_FILE_FORMAT to Barracuda.mysql> SET GLOBAL INNODB_FILE_FORMAT=Barracuda;Alter table to compressed with 8KB key block size.mysql> ALTER TABLE `compressed table` ROW_FORMAT=COMPRESSED,… Read More »2 Steps to Compress MySQL Tables