TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
sandeep talabathula
NA
13
19k
INSERTING EXCEL DATA INTO SQL SERVER TABLE
Apr 2 2008 9:14 AM
Inserting Excel data into contains 3 methods:
1) Simple way is just copy all the data from excel and paste into the sql table(which is created with simillar column names&datatypes).
Then click on execute to save.
2) You can also query excel data using following query in sql server:
SELECT * FROM OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0',
'Data Source=D:\CountriesData.xls;Extended Properties=Excel 8.0')...Sheet1$
Note: This can be done provided you configure your Sql Server as follows:
sp_configure 'show advanced options', 1
RECONFIGURE
GO
sp_configure 'Ad Hoc Distributed Queries', 1
RECONFIGURE
GO
3) By creating Linked Server:
http://support.microsoft.com/kb/306397/EN-US/
Thank you. I'll welcome any suggestions or queries.
Reply
Answers (
1
)
reporting page breaks
Using Rollback transactions (UPDATE Table)