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
When performing bulk imports to seed the databases, we use slice data into batches when the platform supports it. You can find this in MySqlBulkImportService.cs and SqlServerBulkImportService. This can be parameterized via CLI like this:
yuniql run -a -c <connection-string> --bulk-batch-size 1000
MySqlBulkImportService
SqlServerBulkImportService
We need to extend the CLI Option to accept this value.
The text was updated successfully, but these errors were encountered:
When performing bulk imports to seed the databases, we use slice data into batches when the platform supports it. You can find this in
MySqlBulkImportService.cs
andSqlServerBulkImportService
. This can be parameterized via CLI like this:yuniql run -a -c <connection-string> --bulk-batch-size 1000
MySqlBulkImportService
SqlServerBulkImportService
We need to extend the CLI Option to accept this value.
The text was updated successfully, but these errors were encountered: