Visual Basic Code , VB.NET Code, VB Code
  Home   :  Code   :  Forums   :  Submit   :  Mailing List   :  About   :  Contact


Uploading File in Excel to database


Uploading File in Excel to database

Author
Message
chaw12
chaw12
Forum God
Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)

Group: Forum Members
Posts: 70, Visits: 232
Hi All,



Can someone please provide me with a tip on how can i upload a file from excel going to database in a faster way.

I have an excel file that contains 400,000 record.The only problem that i am facing is that, the system took an hour before everything is uploaded in the database. is there a way that i can minimize the time it uses because i find it inefficient.



Thanks.

gauree
gauree
Forum God
Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)Forum God (780 reputation)

Group: Forum Members
Posts: 2, Visits: 5
Dim con As New OleDbConnection

Dim cmd As New OleDbCommand



con.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:\book.accdb"

con.Open()

cmd.Connection = con

cmd.CommandType = CommandType.Text

cmd.CommandText = "select * into newxl2 from [Excel 8.0;HDR=YES;DATABASE=E:\vbexcel.xlsx].[Sheet1$] s;"

cmd.ExecuteNonQuery()

con.Close()

vbexcel is the excel file name and newxl is database table which is created by programatically..
chaw12
chaw12
Forum God
Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)Forum God (21K reputation)

Group: Forum Members
Posts: 70, Visits: 232
thank you for this reply.. im already done with this project but i will look into your idea and compare which is the fastest..
GO


Similar Topics


Reading This Topic


Login
Existing Account
Email Address:


Password:


Social Logins

Select a Forum....

















A1VBCode Forums


Search