Ignore:
Timestamp:
Apr 30, 2008, 11:56:45 PM (17 years ago)
Author:
katerina
Message:

Plenty of compiler warnings fixed, SQL query length fixed, doc update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/README.UPGRADE

    r93 r170  
    11
     2to 2.4.4 and higher: it is possible now to store the full content of
     3  small files in the baseline database. To support this feature with
     4  logging to an RDBMS, the DB schema for Oracle needs to be adjusted
     5  by converting the link_old, link_new columns from VARCHAR2 to CLOB:
     6
     7  -- Oracle:
     8      ALTER TABLE samhain.log ADD tmp_name CLOB;
     9      UPDATE samhain.log SET tmp_name=link_old;
     10      ALTER TABLE samhain.log DROP COLUMN link_old;
     11      ALTER TABLE samhain.log RENAME COLUMN tmp_name to link_old;
     12
     13      ALTER TABLE samhain.log ADD tmp_name CLOB;
     14      UPDATE samhain.log SET tmp_name=link_new;
     15      ALTER TABLE samhain.log DROP COLUMN link_new;
     16      ALTER TABLE samhain.log RENAME COLUMN tmp_name to link_new;
     17
     18  -- Samhain server (yule): if you are logging to the RDBMS via
     19     the server (yule), as recommended, you need to also upgrade the
     20     server, because earlier versions had a too restrictive limit on
     21     the maximum length of an SQL query.
     22
     23   
    224to 2.3.3 and higher: a bug has been fixed that resulted in an additional
    325  slash at the beginning of the linked path of symlinks in the root
Note: See TracChangeset for help on using the changeset viewer.