我在 MS SQL Server 中有一个长时间运行的 INSERT 语句。大约一小时后,事务日志空间不足。是否可以设置会话的自动提交间隔,以便在插入如此多的记录后刷新事务日志?
答案1
答案2
也许您已经考虑过(并且可能已经在使用)在执行 X INSERTS 之后提交的显式事务。
这些可能有用 https://stackoverflow.com/questions/1602244/batch-commit-on-large-insert-operation-in-native-sql
http://sqlserverplanet.com/data-warehouse/transferring-large-amounts-of-data-using-batch-inserts/