Index | Installation | Introduction | API Overview | Package Console | Changelog | Uninstallation
A T T E N T I O N: If you have one of the beta versions installed you should
always run the uninstallation script (@uninstall/drop_console_objects.sql
)
before you install a new version. If you created a context, you should also
delete it: @uninstall/drop_context.sql
(you may need higher permissions for this...).
Open SQLcl, connect to your desired install schema and call
@https://raw.githubusercontent.com/ogobrecht/console/main/install/create_console_objects.sql
Clone the repository or download the latest version and unzip it.
The installation itself is splitted into one mandatory and two optional steps:
- Install CONSOLE itself
- Start SQL*Plus and connect to your desired install schema
- Run
@install/create_console_objects.sql
- User needs the rights to create packages, tables and scheduler jobs
- Do this step on every new release of CONSOLE
- Optional: Grant rights to client schema
- When installed in a central tools schema you may want to grant execute rights on the package and select rights on the log table to public or other schemas
- Start SQL*Plus and connect to your CONSOLE install schema
- Run
@install/grant_rights.sql "YOUR_CLIENT_SCHEMA"
- Optional: Create synonyms in client schema(s)
- When you want to use it in another schema you may want to create synonyms there or public ones for easier access
- Maybe you want also different names for your synonyms like
log
instead ofconsole
- As this step is very variable you should create a reusable script by yourself...