简体   繁体   中英

upload data from ms access to sql server

i have already created a schema in sql server. is there any quick way to upload the data from table to table from msaccess to 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.

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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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