@@ -684,7 +684,7 @@ PostgreSQL documentation
684
684
...</literal>). This will make restoration very slow; it is mainly
685
685
useful for making dumps that can be loaded into
686
686
non-<productname>PostgreSQL</productname> databases.
687
- Any error during reloading will cause only rows that are part of the
687
+ Any error during restoring will cause only rows that are part of the
688
688
problematic <command>INSERT</command> to be lost, rather than the
689
689
entire table contents.
690
690
</para>
@@ -708,9 +708,9 @@ PostgreSQL documentation
708
708
This option is relevant only when creating a data-only dump.
709
709
It instructs <application>pg_dump</application> to include commands
710
710
to temporarily disable triggers on the target tables while
711
- the data is reloaded . Use this if you have referential
711
+ the data is restored . Use this if you have referential
712
712
integrity checks or other triggers on the tables that you
713
- do not want to invoke during data reload .
713
+ do not want to invoke during data restore .
714
714
</para>
715
715
716
716
<para>
@@ -828,7 +828,7 @@ PostgreSQL documentation
828
828
than <command>COPY</command>). This will make restoration very slow;
829
829
it is mainly useful for making dumps that can be loaded into
830
830
non-<productname>PostgreSQL</productname> databases.
831
- Any error during reloading will cause only rows that are part of the
831
+ Any error during restoring will cause only rows that are part of the
832
832
problematic <command>INSERT</command> to be lost, rather than the
833
833
entire table contents. Note that the restore might fail altogether if
834
834
you have rearranged column order. The
@@ -847,7 +847,7 @@ PostgreSQL documentation
847
847
target the root of the partitioning hierarchy that contains it, rather
848
848
than the partition itself. This causes the appropriate partition to
849
849
be re-determined for each row when the data is loaded. This may be
850
- useful when reloading data on a server where rows do not always fall
850
+ useful when restoring data on a server where rows do not always fall
851
851
into the same partitions as they did on the original server. That
852
852
could happen, for example, if the partitioning column is of type text
853
853
and the two systems have different definitions of the collation used
@@ -859,7 +859,7 @@ PostgreSQL documentation
859
859
with this option, because <application>pg_restore</application> will
860
860
not know exactly which partition(s) a given archive data item will
861
861
load data into. This could result in inefficiency due to lock
862
- conflicts between parallel jobs, or perhaps even reload failures due
862
+ conflicts between parallel jobs, or perhaps even restore failures due
863
863
to foreign key constraints being set up before all the relevant data
864
864
is loaded.
865
865
</para>
@@ -1028,7 +1028,7 @@ PostgreSQL documentation
1028
1028
Dump data as <command>INSERT</command> commands (rather than
1029
1029
<command>COPY</command>). Controls the maximum number of rows per
1030
1030
<command>INSERT</command> command. The value specified must be a
1031
- number greater than zero. Any error during reloading will cause only
1031
+ number greater than zero. Any error during restoring will cause only
1032
1032
rows that are part of the problematic <command>INSERT</command> to be
1033
1033
lost, rather than the entire table contents.
1034
1034
</para>
0 commit comments