- Multi-Tenant Patch-set Deployment
- Step by Step Execution
- Pre-Requisites
3.1 Pre-Requisites
This topic provides systematic instructions for pre-requisites.
- Before applying the patch-set, we have to make sure the release is updates with the base version of the patch-set.For Example, If the first patch-set of 14.2 is yet to applied, the release has to be updated as ’14.2.0.0.0’. It can be verified with the below queries.
select param_name, param_val from CSTB_PARAM WHERE PARAM_NAME = 'RELEASE';
select module_group_id, release from SMTB_MODULES_GROUP;
- Another significant parameter is the values of application name and deployment type in CSTB_PARAM.
This value will be updated from the installer during Approot Object Conversion utility as part of deployment.
select param_name, param_val from cstb_param where PARAM_NAME in ('MULTI_TENANT_APP_NAME','MULTI_TENANT_DEPLOYMENT_MODEL');
The Application name of multi-tenant deployment will be stored in CSTB_PARAM asTable 3-1 Parm name and Parm Val
Param_Name Param_Val MULTI_TENANT_APP_NAME OBCL The type of object conversion will be stored in CSTB_PARAM as
Table 3-2 Parm name and Parm Val
Param_Name Param_Val MULTI_TENANT_DEPLOYMENT_MODEL SA (or) SAUA (or) SASDD (or) SASDC - SA - Shared Application
- SAUA - Shared Application User Authentication
- SASDD - Shared Application Shared Data - Default
- SASDC - Shared Application Shared Data – Custom
Parent topic: Step by Step Execution