Skip to content

Commit c986a9e

Browse files
authored
Matteogp/docs sap hana inital (#53213)
1 parent cde48ca commit c986a9e

File tree

2 files changed

+87
-1
lines changed

2 files changed

+87
-1
lines changed
Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
# Source Netsuite 2
1+
# Source Netsuite
22

33
:::info
44
Airbyte Enterprise Connectors are a selection of premium connectors available exclusively for
55
Airbyte Self-Managed Enterprise and Airbyte Teams customers. These connectors, built and maintained by the Airbyte team,
66
provide enhanced capabilities and support for critical enterprise systems.
77
To learn more about enterprise connectors, please [talk to our sales team](https://airbyte.com/company/talk-to-sales).
88
:::
9+
10+
Airbyte’s incubating SAP HANA enterprise source connector currently offers Full Refresh and cursosr-based Incremental syncs for streams.
11+
12+
## Features
13+
14+
| Feature | Supported?\(Yes/No\) | Notes |
15+
| :---------------- | :------------------- | :---- |
16+
| Full Refresh Sync | Yes | |
17+
| Incremental Sync | Yes | |
18+
19+
## Prequisities
20+
21+
- Dedicated read-only Airbyte user with read-only access to tables needed for replication
22+
- A Netsuite environment using **SuiteAnalytics Connect** and the **Netsuite2.com** data source for integrations

docs/integrations/enterprise-connectors/source-sap-hana.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,75 @@ Airbyte Self-Managed Enterprise and Airbyte Teams customers. These connectors, b
66
provide enhanced capabilities and support for critical enterprise systems.
77
To learn more about enterprise connectors, please [talk to our sales team](https://airbyte.com/company/talk-to-sales).
88
:::
9+
10+
Airbyte’s incubating SAP HANA enterprise source connector currently offers Full Refresh and Incrementals syncs for streams. Support for Change Data Capture (CDC) is currently in-development and will be available soon.
11+
12+
## Features
13+
14+
| Feature | Supported?\(Yes/No\) | Notes |
15+
| :---------------- | :------------------- | :---- |
16+
| Full Refresh Sync | Yes | |
17+
| Incremental Sync - Append | Yes | |
18+
| Incremental Sync - Append | Yes | |
19+
| Changa Data Capture (CDC) | No | |
20+
21+
22+
## Prequisities
23+
24+
- Dedicated read-only Airbyte user with read-only access to tables needed for replication
25+
- SAP HANA Host Name URL
26+
- In the SAP HANA Cloud Management Portal, this can be found under the **Connections** tab for you SAP HANA instance
27+
- The Host Name is the first portion of the SQL Endpoint before the Port
28+
- ie:**01234abce-1234-56fg.us-01-hanacloud.ondemand.com**:123
29+
- The **Host** is also a combination of the **Instance ID** and **Landscape**
30+
- Port Number
31+
- Inside of the SAP HANA Cloud Management Portal, this can be found under the **Connections** tab for you SAP HANA instance
32+
- The **Port** is listed explicitly in addition to being part of the **SQL Endpoint**
33+
34+
## Setup Guide
35+
36+
1. Enter your SAP HANA Host Name
37+
2. Enter the Port number
38+
3. Provide the login credentials for the SAP HANA account with access to the tables
39+
4. Specify the schemas for tables that you would like to replicate
40+
5. Select either Full Refresh or Incremental for your desired Sync Type
41+
42+
## Data type mapping
43+
44+
SAP HANA data types are mapped to the following Airbyte data types when synchronizing data.
45+
46+
| SAP HANA Type | Airbyte Type | Notes |
47+
| -------------- | -------------------------- | ----- |
48+
| `BOOLEAN` | BOOLEAN | |
49+
| `DOUBLE` | NUMBER | |
50+
| `FLOAT` | NUMBER | |
51+
| `REAL` | NUMBER | |
52+
| `SMALLDECIMAL` | NUMBER | |
53+
| `DECIMAL` | NUMBER | |
54+
| `DEC` | NUMBER | |
55+
| `INTEGER` | INTEGER | |
56+
| `TINYINT` | INTEGER | |
57+
| `SMALLINT` | INTEGER | |
58+
| `BIGINT` | INTEGER | |
59+
| `CHAR` | STRING | |
60+
| `VARCHAR` | STRING | |
61+
| `ALPHANUM` | STRING | |
62+
| `NCHAR` | STRING | |
63+
| `NVARCHAR` | STRING | |
64+
| `SHORTTEXT` | STRING | |
65+
| `TIME` | TIME_WITHOUT_TIMEZONE | |
66+
| `DATE` | DATE | |
67+
| `SECONDDATE` | TIMESTAMP_WITHOUT_TIMEZONE | |
68+
| `TIMESTAMP` | TIMESTAMP_WITHOUT_TIMEZONE | |
69+
| `BINARY` | BINARY | |
70+
| `VARBINARY` | BINARY | |
71+
| `REAL_VECTOR` | BINARY | |
72+
| `BLOB` | BINARY | |
73+
| `CLOB` | STRING | |
74+
| `NCLOB` | STRING | |
75+
| `TEXT` | STRING | |
76+
| `BINTEXT` | STRING | |
77+
| `ST_POINT` | BINARY | |
78+
| `ST_GEOMETRY` | BINARY |
79+
80+

0 commit comments

Comments
 (0)