用命令行执行SQL脚本的方法
执行过大的SQL脚本会出现 "Insufficient memory to continue the execution of the program" 内存不足的错误,导致SQL脚本无法执行。
可以使用命令行的方式执行SQL脚本:
以管理员身份运行命令行,输入:
SQLCMD -d database -i filename.sql
database代表数据库名,filename.sql 代表脚本文件。 即可执行。
http://freefeast.info/general-it-articles/run-a-large-sql-script-in-ms-sql-server-solution-insufficient-memory-to-continue-the-execution-of-the-program/