-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
41 lines (39 loc) · 1.21 KB
/
config.ini
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
[POSTGRESQL]
# PostgreSQL Server host address
Host = Host
# PostgreSQL Server port
Port = 5432
# PostgreSQL Server auth user
User = User
# PostgreSQL Server auth password
Password = Password
# PostgreSQL Server schema name
Schema = Schema
# PostgreSQL database name
Database = DatabaseName
# Comma-separated list of tables to generate TDS files for. Leave blank to generate TDS files for ALL tables in the database
Tables = table1,table2
# If true, ignores Tables arg and instead includes CustomSql in the TDS
UseCustomSql = False
# SQL string to generate TDS from
CustomSql = SELECT * FROM table1
# Require SSL for the PostgreSQL Server connection
RequireSsl = True
[TABLEAU_SERVER]
# Ignore SSL certificarte verification for the Tableau Server
IgnoreSslVerification = True
# The address of the Tableau Server
TableauServerAddress = TableauServer
# The project ID to add the TDS to
ProjectId = 123-123-342
# Name of the generated TDS if using custom SQL
DatasourceName = DatasourceName
# TableaU Server auth user
User = User
# Tableau Server auth password
Password = Password
[MISC]
# Verbose output
Verbose = True
# Absolute path to the directory where TDS files will be placed. Defaults to current directory if blank
OutputDirectory =