bulk_insert_records
Insert multiple records into a specified SQL Server table in one atomic transaction. Pass the table name and a list of record dictionaries to batch create rows reliably.
Instructions
Insert multiple records into a database table in a single transaction (Batch Create).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| records | Yes | List of record dictionaries. | |
| table_name | Yes | Target table name. | |
| schema_name | No | Target schema name (default: 'dbo'). | dbo |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||