-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_connections.yml
59 lines (57 loc) · 1.79 KB
/
example_connections.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Connection details to an Postgres database
postgres1:
type: postgres
read_only: False # Will disable SQL and DML modifications
outputs:
dev:
host: localhost
port: 5432
user: user_name
password: secret_password
database: my_db
limit_rows: 100 # Will limit all exports to 100 rows
prod:
host: prodserver_host
port: 5432
user: user_name
password: secret_password
database: my_db
target: dev # The profile that will be used when running the load
# Connection details to an SQL Server database
sqlserver1:
type: sqlserver
outputs:
dev:
driver: ODBC Driver 17 for SQL Server # Your ODBC driver
host: localhost
port: 1433
trusted_connection: True # Use logged in user for credentials
as_columnstore: True # Create tables as Clustered Columnstore Index (SQL Server only)
database: my_db
limit_rows: 100
prod:
driver: ODBC Driver 17 for SQL Server
host: prodserver_host
port: 1433
user: user_name
password: secret_password
database: my_db
target: dev # The profile that will be used when running the load
# Connection details to an Oracle database
oracle1:
type: oracle
outputs:
dev:
host: localhost
port: 1521
user: user_name
password: secret_password
database: my_db
limit_rows: 100 # Will limit all exports to 100 rows
prod:
host: prodserver_host
port: 1521
user: user_name
password: secret_password
database: my_db
target: dev # The profile that will be used when running the load