October 24, 2013 at 1:55 pm
Hi All,
Hope doing all well.
How to load data from Excel file to sql server table using only script task in SSIS?
I don't know coding. Please help me on this.
Thanks
Sibi.:-)
October 24, 2013 at 1:58 pm
If you don't know coding, why would you want to do it with a script task if a data flow is the appropriate task for your situation?
October 24, 2013 at 2:06 pm
Thanks for quick response Luis.
I am just practicing.
I know we can do that by tasks but, i want to learn how to do using script task only. I googled it but, not clearly mentioned.
Please let me know how to do it?
Thanks.
October 24, 2013 at 2:14 pm
HI
In order to load from Excel into SQL Server, you should have Bulk_admin database role rights on your ID with Insert permission on database.
you can use the below script to load data into sql server after that,
USE <DB_NAME>
GO
/** STEP 1 - CREATE TABLE **/ -- You need to create the table before inserting data with the columns mentioned in your excel
CREATE TABLE Load_Table(cust_no integer, cust_name varchar(20) )
GO
/** STEP 2 - BULK INSERT **/
BULK INSERT Load_table FROM 'FIle_location\file_name.xls' WITH (FIRSTROW = 2, FIELDTERMINATOR =',', ROWTERMINATOR ='')
GO
October 24, 2013 at 2:36 pm
Thanks for info rohit.But i want it in script task.
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy