0

我有一个 sql 文件,它从逗号分隔的文件中读取大量数据。这给我们带来了问题,因为不同的环境有不同的路径,因此我们的自动数据库脚本无法随机运行。

我们还没有想到获得正确绝对路径的聪明方法,而且由于 .csv 文件对 sql server 可见的要求,它变得更加复杂。

我会对 sql 文件中的“数据块”非常满意,但我不确定这是否可行,或者如果可以的话,如何最好地安排它。

编辑:这是 SQL Server :)

4

1 回答 1

1

Here is my suggestion:

  1. Have a master table with the paths on all the servers.
  2. Synchronize this table as necessary (say, copy it around every night).
  3. Use BULK IMPORT. Construct the command in dynamic SQL.
  4. Execute the command
于 2012-09-11T13:59:36.673 回答