1

我有一个准备好手动维护的数据库,我现在想使用该数据库来创建一个 SQL 项目。我也在创建但不能导入现有的表、视图、存储过程或任何其他对象。有没有办法做到这一点。如果是,请告诉我。

谢谢,皮尤什

4

2 回答 2

1

Using the Database Edition of Visual Studio (not to be confused with the older 'Database Project') you can generate a complete set of scripts that can be added to source control. Data and schema comparison tools are also included.

This tool was originally known as 'Data Dude' and is available for Visual Studio 2005 and higher.

于 2009-12-28T09:37:21.410 回答
1

我不知道 Visual Studio 中对数据库的任何逆向工程支持。

您需要做的是从 SQL Server Management Studio 将现有的 SQL 数据库编写成 *.sql 文件:

替代文字

然后将它们作为“创建脚本”导入到 Visual Studio 中的数据库项目中。任何进一步的更改都可以作为“更改脚本”添加到您的项目中。

于 2009-12-28T08:19:40.520 回答