Provision SAP HANA Cloud trial account

Below are the steps to provision SAP Hana Database using a trial account

Let’s start with creating a temporary email for registration purposes

0
Don’t close the above window, otherwise a new email id would get generated.

Go to sap.com and navigate to productsTrials and Demos

1

Click Advanced Trials

2

Click SAP BTP Trial

3

Click Start your free 90-day trial

4

Paste the temporary email id that we created in the first step, and click Next

5

We fill in our details and click Submit

6

It’s time to check the inbox of our temporary email account

7

Notice that there is an email received in our temporary email account

8

Open the email and click to activate the trial account

9

It will prompt to create a password. Provide a password and click Submit

10

The trial account is now created. Click to start the trial

11

Provide your phone number and click Continue

13

We receive an OTP on the phone number. Provide the code and click continue

14

Select the region as US East (VA) - AWS

15

Click Continue

16

The SAP BTP trial account is ready. Click Go to your Trial account

17

Click the Trial sub-account

18

Open Instances and Subscriptions

19

It’s time to create a subscription. Click the Create button

20.1

While creating a subscription, Select service as SAP Hana Cloud and Plan as tools and click Create

20.2

Notice that SAP Hana Cloud subscription is now created. Click Users on the left panel

21

Select the username (temporary email that we supplied earlier) and click Assign Role Collection

22

Search hana and select all the 3 role collections that gets displayed. Click Assign Role Collection

23

Our user now has all the 3 role collections. Click Instances and Subscriptions

24

Now, click SAP Hana Cloud application under subscriptions

25

There are no instances yet. Let’s click Create Instance

26

Select Type as SAP HANA Cloud, SAP HANA Database. Click Next Step

27

Provide Instance Name, Description, password for DBADMIN administrator. Select the latest version 2024.2 (QRC 1/2024). Click Next Step

28

Keep everything as default. Click Next Step

29

Click Next Step

30

Select Allow all IP addresses and click Next Step

31

Click Review and Create

32

Click Create Instance

33

Notice that the provisioning of SAP Hana Database instance has started. It takes some time to provision - please be patient.

34.1

Once the instance is provisioned (status is displayed as Running) we can get the datasource url (SQL Endpoint) by clicking the instance and selecting Connections

34.2

We navigate to SAP Hana Database Explorer by click the …​

35

Provide the administrator credentials and click OK

36

Open SQL console and create the table CRICKET_WORLD_CUP using the following DDL statement:

CREATE TABLE CRICKET_WORLD_CUP (
    _ID VARCHAR2(255) PRIMARY KEY,
    CONTENT CLOB,
    EMBEDDING REAL_VECTOR(1536)
)
37

Navigate to hana_dev_db → Catalog → Tables to find our table CRICKET_WORLD_CUP

38

Right-click on the table and click Open Data

39

Notice that the table data is now displayed. There are now rows as we didn’t create any embeddings yet.

40