问题描述
我将CopyObject用于我的MS Access后端,该后端从现有的空表创建一个新表.
MS Access中的"DoCmd.TransferDatabase A_EXPORT,"ODBC数据库",..."代码可以在SQL Server中创建一个表,但不会复制主键,从而使SQL Server中的表不可更新.
我正在寻找一种从前端MS Access 2000以编程方式在SQL Server中创建空表(仅结构)的方法,所有表都带有索引和主键.
I use CopyObject for my MS Access back-end which creates a new table from an existing empty table.
The "DoCmd.TransferDatabase A_EXPORT, "ODBC Database",..." code in MS Access can create a table in SQL Server but primary key is not copied, rendering the table in SQL Server un-updateable.
I am looking for a way to programmatically create an empty table (structure only) in SQL Server from my front end MS Access 2000 all with indexes and primary key.
推荐答案
这篇关于需要有关如何在MS Access中使用VBA在MS SQL Server中复制表的帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!