We have a HANA AWS instance with full ADMIN (SYSTEM) privileges
We have Setup VIRTUAL Table using SDI Process which gets data every 5 minutes
We are pushing in the data from Virtual table to Actual Schema table using the INSERT command (every 5 minutes)
For example: consider VT_TABLE1 as Virtual table and Table_5_mins as Actual Schema table
INSERT INTO Table_5_mins
(
Field_1,Field_2,Field_3
)
SELECT Field_1, Field_2, Field_3
From VT_TABLE1;
We have automated the execution of this query by placing this query in .SQL file
Which is in-turn placed in .SH file and .SH file is scheduled in CRONTAB of HANA SUSE server
We have full access to HANA SUSE server using .PPK file.
We have an account in a HCP instance (HANA Cloud Platform provided by SAP), we do not have .PPK file for this HCP instance
Now our current requirement is replicating the above setup (SDI + Automatic periodic insertion) in HCP instance.
Assuming the SDI setup works and we are able to get VIRTUAL table, how do we automate data insertion from VIRTUAL table to Actual Schema table when we cannot put the .SQL and .SH files in the server (as we don’t have .PPK access) and also i cant Automate the same.