0

我使用 ODBC 表从 SQL 服务器导入,但这些表失去了所有 PK 和 FK 完整性。当我在访问中设计视图时不再需要我的 PK?

4

1 回答 1

1

Importing your table schema + data won't fully transfer your database.

Remember that Indexes, FK Constraints, Stored Procedures and so on are independent objects such as Tables. These objects' definitions should be translated between the two databases when you are willing to do such migration.

于 2012-11-29T21:30:37.507 回答