You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,24 +124,41 @@ one for each table to copy, plus the one for the job)
124
124
125
125
You'll also need to specify the connection parameters. They will be stored inside the kettle files (in
126
126
cleartext, so don't make this directory public):
127
+
127
128
`-sd` : sql server database
129
+
128
130
`-sh` : sql server host
131
+
129
132
`-si` : sql server host instance
133
+
130
134
`-sp` : sql server port (usually 1433)
135
+
131
136
`-su` : sql server username
137
+
132
138
`-sw` : sql server password
139
+
133
140
`-pd` : postgresql database
141
+
134
142
`-ph` : postgresql host
143
+
135
144
`-pp` : postgresql port
145
+
136
146
`-pu` : postgresql username
147
+
137
148
`-pw` : postgresql password
149
+
138
150
`-sforce_ssl` : force a SSL connection to your SQL Server database. Required if ForceEncryption option is set to 'Yes'
151
+
139
152
`-pforce_ssl` : force a SSL connection to your PostgreSQL database. ssl=on should be set on the PostgreSQL server
153
+
140
154
`-f` : the SQL Server structure dump file
141
-
-ignore_errors : ignore insert errors (not advised, you'll need to examine kettle's logs, and it will be slower)
155
+
156
+
`-ignore_errors` : ignore insert errors (not advised, you'll need to examine kettle's logs, and it will be slower)
142
157
143
158
`-pi` : The parallelism used in kettle jobs to read from SQL Server (1 by default, the jdbc driver frequently errors out when larger)
159
+
144
160
`-po` : The parallelism used in kettle jobs to write to PostgresSQL: there will be this amount of sessions used to insert into PostgreSQL. Default to 8
161
+
145
162
`-sort_size=100000`: sort size to use for incremental jobs. Default is 10000, to try to be on the safe side (see below).
146
163
147
164
We don't sort in databases for two reasons: the sort order (collation for strings for example) can be different between SQL Server
0 commit comments