Share via


ImportRowsPerBatch Property

Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa funzionalità in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.

The ImportRowsPerBatch property specifies the number of rows contained in a bulk-copy transaction.

Sintassi

object.ImportRowsPerBatch [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list

  • value
    A long integer greater than 0

Data Type

Long

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetImportRowsPerBatch(LPLONG pRetVal);
HRESULT SetImportRowsPerBatch(LONG NewValue);

Osservazioni

The Microsoft SQL Server bulk-copy process can copy large amounts of data from an external data file to a SQL Server table. By default, a bulk-copy data-import operation inserts all rows in the data file in a single transaction. SQL Server does not guarantee data integrity until and unless a bulk-copy transaction is committed.

Use ImportRowsPerBatch to adjust the size of the bulk copy transaction.

Applies To:

Vedere anche

Concetti