Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Not all the questions on this page are directly related to Canvas deployment, e.g. questions on Oracle database. Some of these questions were asked by participants during the Canvas training sessions. We have answered those here for the larger benefit of the Canvas Developer community.

 How to connect to Oracle database through command prompt?
  1. At command prompt, type sqlplus and press ENTER.
  2. Enter the DBA User ID and press ENTER.
  3. Enter the DBA User Password and press ENTER.

    Connecting to Oracle Database

    If the credentials are correct the connection to Oracle database will be successful.
 How to find out the Oracle System ID (SID)?
  1. After successfully connecting to the Oracle database at the command prompt as suggested in previous question, enter the following command:

    show parameter service_name
  2. In the result, the VALUE column displays the Oracle SID.

    Finding Oracle SID
 What to update in the ‘config.txt’ file for deploying Canvas?

The ‘config.txt’ file contains the configuration details to connect to the database and execute the schema scripts of Canvas Technology framework. It is essential that you provide the correct DBA user ID and password in the ‘config.txt’ file to connect to the Oracle database. The Canvas schema scripts are executed on the connected database.

Updating config.txt file


 Why is the Canvas schema script running thrice when executing the ‘run.bat’ file?

It is because, by default the ‘run.bat’ file executes the schema scripts of CT ModelHouse, Expert Studio, and Wizard Studio. However, you can specify which scripts to be executed in the APP_LIST parameter in the 'config.txt' file by removing the unwanted schemas:

APP_LIST=ctmodelhouse, ctstudio/Expert, ctstudio/Wizard
  • No labels