简体   繁体   English

从MS Access上传数据到SQL Server

[英]upload data from ms access to sql server

i have already created a schema in sql server. 我已经在sql server中创建了一个架构。 is there any quick way to upload the data from table to table from msaccess to sql server. 有没有一种快速的方法可以将表中的数据从msaccess上载到sql server。 what if the col names have changed slightly? 如果校名稍有变化怎么办?

只需使用“导入数据”功能,就可以将源列映射到目标列

您可以根据SQL Server的版本使用DTS或SSIS从任何基于ODBC或OLEDB的数据源加载和转换数据。

Other than using DTS, you could create a Linked Table inside Access (which points to SQL Server table) and create INSERT queries to do that. 除了使用DTS,还可以在Access内部创建一个链接表(指向SQL Server表),然后创建INSERT查询。

If the table structure is identical & if it is a one time job, you could do copy-paste from Access Table to SQL Server Table (when that is linked). 如果表结构相同且仅做一次,则可以将Access表复制粘贴到SQL Server表(链接时)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM