" /> Size of Log Database - Genesys CTI User Forum

Author Topic: Size of Log Database  (Read 3281 times)

Anthony

  • Guest
Size of Log Database
« on: January 01, 1970, 12:00:00 AM »
Advertisement
The size of my Log Database is extremely big. Is there a way to configure it through CME or SCI in order to delete obsolete
records without using a DBMS mechanisms.

If not, what would be the best way and how to delete the records using a DBMS mechanisms.

Thanks,
Anthony

gauthier

  • Guest
Size of Log Database
« Reply #1 on: January 01, 1970, 12:00:00 AM »
  • Best Answer
  • There is no mechanism in Genesys version 6.1, it has been implemented in version 6.5 of the management layer. Otherwise if you're using version 6.1, you can use the following script.

    delete from g_log_messages
    where timewritten < to_date('(your date in format DDMMYYYY)', 'DD/MM/YYYY');

    This script allows you to delete log messages in the log DB that are older than the date specified. It has been tested on an Oracle DB.