InsertMode Parameter (Connect-PostgreSQL Cmdlet)
Specifies what method to use when inserting bulk data. By default DML mode is used.
Syntax
Connect-PostgreSQL -InsertMode string
Possible Values
DML, CSVStreamData Type
cstr
Default Value
"DML"
Remarks
When this is set to DML the cmdlet uses Insert SQL statements to upload bulk data.
When this is set to CSVStream the cmdlet uses the bulk upload with COPY FROM STDIN command.