Information

  • This topic provides introductory information on the installation of PLANTA project and provides links to more detailed topics.
  • All files required for the installation of the PLANTA software are available for download on the PLANTA Transfer Server.

Caution

  • PLANTA expressly recommends that software installations be carried out by experienced administrators.
  • Please read the system requirements before you begin to update PLANTA project.
  • If you have any questions, please contact your PLANTA consultant.

 Procedure

  • A PLANTA project installation includes the installation of the three components: client, server, and database.
  • The installation is carried out via PLANTA Installer.
    • Upon first installation of the database, the user and all database objects (tables, procedures, etc.) are assigned to the table space that has been set as the default tablespace in the database.

 

  • For Oracle databases, a schema trigger must be created prior to installation (<DB_USER> is to be replaced by the name of the database user):
CREATE OR REPLACE TRIGGER ON_LOGON_PLANTA_<DB_USER>
AFTER LOGON ON SCHEMA WHEN ( USER = 'DB_USER')
  BEGIN
  execute immediate('alter session set nls_date_format="DD.MM.RRRR"');
  EXCEPTION
  WHEN OTHERS THEN
  NULL;
  END;
PY


Note