@@ -61,7 +61,7 @@ Reading files from an archive
61
61
HTTP(S) support
62
62
pgloader knows how to download a source file or a source archive using
63
63
HTTP directly. It might be better to use ``curl -O- http://... |
64
- pgloader` and read the data from *standard input*, then allowing for
64
+ pgloader `` and read the data from *standard input *, then allowing for
65
65
streaming of the data from its source down to PostgreSQL.
66
66
67
67
Target schema discovery
@@ -83,7 +83,7 @@ Pre/Post SQL commands
83
83
This feature allows pgloader commands to include SQL commands to run
84
84
before and after loading a file. It might be about creating a table
85
85
first, then loading the data into it, and then doing more processing
86
- on-top of the data (implementing an `` ELT `` pipeline then), or creating
86
+ on-top of the data (implementing an * ELT * pipeline then), or creating
87
87
specific indexes as soon as the data has been made ready.
88
88
89
89
One-command migration to PostgreSQL
@@ -150,12 +150,16 @@ Repeatable (DROP+CREATE)
150
150
database before issing any CREATE statement, so that you can repeat the
151
151
migration as many times as necessary until migration specifications and
152
152
rules are bug free.
153
-
154
- On error stop / On error resume next
155
- The default behavior of pgloader when migrating from a database is ``on
156
- error stop ``. The idea is to let the user fix either the migration
157
- specifications or the source data, and run the process again, until it
158
- works.
153
+
154
+ The schedule the data migration to run every night (or even more often!)
155
+ for the whole duration of the code migration project. See the
156
+ `Continuous Migration <https://pgloader.io/blog/continuous-migration/ >`_
157
+ methodology for more details about the approach.
158
+
159
+ On error stop / On error resume next The default behavior of pgloader when
160
+ migrating from a database is ``on error stop ``. The idea is to let the
161
+ user fix either the migration specifications or the source data, and run
162
+ the process again, until it works.
159
163
160
164
In some cases the source data is so damaged as to be impossible to
161
165
migrate in full, and it might be necessary to then resort to the ``on
0 commit comments