Access files of different formats are imported into the Mssql database.

Source: Internet
Author: User
Tags odbc mssql

So far, there have been two Access file formats, one being mdb files, and the other being Accdb files. They have different Chinese methods for importing them to the Mssql database.

1. Import in Mdb format:

SELECT * into newtab from openrowset (''microsoft. Jet. OLEDB.4.0 '', ''C: database. mdb''; ''admin''; ''', link)

GO

Microsoft. jet. OLEDB.4.0 is an ODBC driver and C: database. mdb is the physical path of the Mdb file to be imported. In particular, it indicates that the file to be imported must be uploaded to the server where the database is located, and Link is the Access table name.

2. Accdb format import:

SELECT * into newtab from openrowset (''microsoft. Ace. OLEDB.12.0 '', ''C: aa. Accdb'; ''admin''; ''', bb)

GO

Microsoft. Ace. OLEDB.12.0 is the ODBC driver number, C: aa. accdb is the physical path of the accdb file, and bb is the accdb table name.

3. Compatibility:

The Microsoft. Ace. Oledb.12.0 driver is fully compatible with the Microsoft. Jet. Oledb.4.0 driver, and vice versa. For example, you can use Microsoft. Ace. OLEDB.12.0 to import Mdb files.

Select * into newtab from Openrowset (''microsoft. Ace. Oledb.12.0 '', ''C: database. mdb''; ''admin''; ''', link)

 

<

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.