Click here to Skip to main content
15,920,508 members
Home / Discussions / Database
   

Database

 
GeneralRe: add 30 days from a given date Pin
Khawar Abbas113-Mar-08 20:12
Khawar Abbas113-Mar-08 20:12 
GeneralRe: add 30 days from a given date Pin
Member 387988113-Mar-08 20:32
Member 387988113-Mar-08 20:32 
QuestionReference integrity on external ID? Pin
Roger Alsing13-Mar-08 11:07
Roger Alsing13-Mar-08 11:07 
GeneralIgnoring SQL Errors Pin
#realJSOP13-Mar-08 10:44
professional#realJSOP13-Mar-08 10:44 
GeneralRe: Ignoring SQL Errors Pin
pmarfleet13-Mar-08 12:07
pmarfleet13-Mar-08 12:07 
GeneralRe: Ignoring SQL Errors Pin
#realJSOP13-Mar-08 12:18
professional#realJSOP13-Mar-08 12:18 
GeneralRe: Ignoring SQL Errors [SOLVED] Pin
#realJSOP13-Mar-08 12:17
professional#realJSOP13-Mar-08 12:17 
GeneralOleDbDataAdapter.Update() slowness Pin
A Wong13-Mar-08 4:45
A Wong13-Mar-08 4:45 
Hello, first time asking a question here, so please be gentle

I'm filling a dataset and using OleDbDataAdapter.Update() to insert it into a DBF table using Jet. The update is running painfully slow and I've read up a bit on how to speed up and saw something about starting the transaction before running the update. Doesn't really seem to do much for me. I have a table write that goes on for 24 minutes. Any help would be appreciated.

Code snippit:


If Not cnDBConn.State = ConnectionState.Open Then
cnDBConn.Open()
End If
Dim transID As System.Data.OleDb.OleDbTransaction = cnDBConn.BeginTransaction()
cmInsert.Transaction = transID
daAdapter.InsertCommand = cmInsert
daAdapter.DeleteCommand = Nothing
daAdapter.UpdateCommand = Nothing
daAdapter.ContinueUpdateOnError = False

daAdapter.Update(dsOut, sCurrentTable)
QuestionHow do i get a package variable from within the Data Flow SSIS Pin
ONeil Tomlinson13-Mar-08 2:24
ONeil Tomlinson13-Mar-08 2:24 
GeneralRe: How do i get a package variable from within the Data Flow SSIS Pin
Mark J. Miller13-Mar-08 5:38
Mark J. Miller13-Mar-08 5:38 
GeneralRe: How do i get a package variable from within the Data Flow SSIS Pin
ONeil Tomlinson14-Mar-08 1:11
ONeil Tomlinson14-Mar-08 1:11 
GeneralProblems creating DataTable in .DBF File Pin
Snaider13-Mar-08 1:08
Snaider13-Mar-08 1:08 
GeneralRe: Problems creating DataTable in .DBF File Pin
ChandraRam13-Mar-08 1:46
ChandraRam13-Mar-08 1:46 
QuestionRe: Problems creating DataTable in .DBF File Pin
Snaider13-Mar-08 2:05
Snaider13-Mar-08 2:05 
GeneralRe: Problems creating DataTable in .DBF File Pin
ChandraRam13-Mar-08 2:10
ChandraRam13-Mar-08 2:10 
GeneralRe: Problems creating DataTable in .DBF File Pin
Khawar Abbas113-Mar-08 2:43
Khawar Abbas113-Mar-08 2:43 
GeneralRe: Problems creating DataTable in .DBF File Pin
Snaider13-Mar-08 5:54
Snaider13-Mar-08 5:54 
GeneralRe: Problems creating DataTable in .DBF File Pin
perryf_0013-Mar-08 7:52
perryf_0013-Mar-08 7:52 
Generalbuilding a query for finding a value Pin
laziale12-Mar-08 22:42
laziale12-Mar-08 22:42 
GeneralRe: building a query for finding a value Pin
Colin Angus Mackay12-Mar-08 23:45
Colin Angus Mackay12-Mar-08 23:45 
GeneralRe: building a query for finding a value Pin
laziale12-Mar-08 23:48
laziale12-Mar-08 23:48 
GeneralRe: building a query for finding a value Pin
Colin Angus Mackay13-Mar-08 1:39
Colin Angus Mackay13-Mar-08 1:39 
GeneralRe: building a query for finding a value Pin
Khawar Abbas113-Mar-08 0:02
Khawar Abbas113-Mar-08 0:02 
GeneralRe: building a query for finding a value Pin
laziale13-Mar-08 0:10
laziale13-Mar-08 0:10 
GeneralRe: building a query for finding a value Pin
Khawar Abbas113-Mar-08 0:19
Khawar Abbas113-Mar-08 0:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.