数据库项目需要很长时间才能打开

时间:2009-08-10 15:01:10

标签: visual-studio-2008 database-project

每当我打开我的SLN下面有多个数据库项目时,打开需要很长时间(10到15分钟)。我收到的消息是:

Analyzing database schema. Your database projects will be ready after 23000 operations are completed.
Analyzing database schema. Your database projects will be ready after 45000 operations are completed.
Analyzing database schema. Your database projects will be ready after 59871 operations are completed.
Analyzing database schema. Your database projects will be ready after 63254 operations are completed.
Analyzing database schema. Your database projects will be ready after 87698 operations are completed.

Visual Studio没有告诉我它正在分析什么?

我有什么方法可以加快这个过程吗?

1 个答案:

答案 0 :(得分:5)

它正在序列化DBMDL文件。这需要相当长的时间,具体取决于项目的大小/复杂程度。例如,我们中的一个是150MB,完成所有“操作”需要将近20分钟。

我建议每个解决方案都有一个项目 - 持续更新Temp文件夹中的这些DBMDL文件,直到它们完成,然后将它们复制到您的工作文件夹并导致相当多的磁盘活动

我也将看到优化这些 - 在某些情况下,花费的时间确实是一个障碍。