This article is about the connectivity data of an SAP Netweaver ABAP instance which uses a SAP HANA instance as its primary database.
To get everybody on board, MDC stands for HANA Multi Tenant Database Containers which is available with SP9.
These are the parameters of the system:
SAP ABAP instance
Hostname of PAS: plx101
SID: GTO
HANA database
Hostname: ld2426
Instance number: 00
SID: MUL
SQL Schema: SAPABAP1
The connection data to between the ABAP kernel and the HANA database instance is done via the so-called hdbuserstore which is part of the HANA client software.
The connection is always established via the userstore key with the name DEFAULT.
For non MDC HANA instances (single database instances), only the hostname and the instance number are necessary to build the connection string which is: <hostname> + 3 + <instance number> + 15 . In our case it is: ld2426.wdf.sap.corp:30015
In case of HANA Multi Database Containers it gets a little more complicated.
In case a HANA instance is installed as MDC it becomes the host for multiple instances which are called: Tenants.
To be able to provide seperate connectivity to each tenant, 15 can't be the only indexserver port. Due to this the connection string gets another variable:
<hostname> + 3 + <instance number> + <tenant port> . There is only one fixed tenant port which is 13 . This is the port to the so-called system database.
The system database is some kind of master tenant used only for administrative purposes like:
- creating, dropping tenants and
- starting or stopping tenants.
In case you are about to migrate your single database to MDC you don't have to worry about the connectivity.
The current port 15 will also be the port of the tenant which hosts all data of the former single database.
The HANA database from above is currently a single database instance:
After the upgrade to SP9 the migration to MDC is very simple.
As you see in the picture above the Statisticsserver process needs to get migrated to run inside the indexserver.
Check the note for more information: 1917938 - Migration of the statistics server for Revision 74 or higher
Once the Statisticsserver runs inside of the indexserver the process is gone.
Now the convertion to MDC can start after the HANA has been shutdown.
After that you have to add two new systems in HANA Studio.
- System database:
As user / password combination use: system / manager.
After the system database is added you can start it. After the startup it looks like this: - After that add a second system, the tenant, which contains all data of the former single database.
In case of converting a single database to MDC the name of tenant is the same as the SID which was used during the installation of the software.
Use the known password for user system.
To start the tenant you have to run the following sql command in an SQL session using the system database:
Once the tenant has started the processes look like this:
Now you can test the connection from the SAP instance:
As the connection is still working the indexserver must still listen on the same port ?
Let's check:
That means the connectivity of the SAP system doesn't have to be changed.
In case additional tenants are created the SQL_PORT will be different:
and it also has its own indexserver process.
To get an overview about all tenants this query might be helpfull:
That's it for now.