SQL Excel import to SQL Server table

Source: Internet
Author: User

--1, data table already created, Excel first row as table header

--Enable AD Hoc distributed Queries:

exec sp_configure ' show advanced options ', 1

Reconfigure

exec sp_configure ' Ad Hoc distributed Queries ', 1

Reconfigure

Go

--Start querying data

If object_id (' temp_xxx ') is not null

drop table temp_xxx Go

SELECT * into temp_xxx from OpenDataSource (' microsoft.ace.oledb.12.0 ', ' Data source=c:\users\administrator\appdata\ Local\temp\1\2012.xls; User id=; password=; Extended properties=excel 5.0 ') ... sheet1$

--Close ad Hoc distributed Queries after use is complete:

exec sp_configure ' Ad Hoc distributed Queries ', 0

Reconfigure

exec sp_configure ' show advanced options ', 0

Reconfigure

SELECT * from Temp_xxx;

SQL Excel import to SQL Server table

Related Article

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.