TheWizardofInt
Well-known member
I am attempting to alter about 400,000 rows in an MS SQL database
Normally, I would make my connection, use the dataadapter to move the data to a datatable, use the datatable to change the data, then put the data back with a SQL insert statement
I am getting a MaxRows error which I can only read from the stack trace. The actual error message is " ", which helps a whole heck of a lot.
I am assuming there is a max row limit for SQL query like this, or for datatables (I know I have moved larger amounts of data with MySQL)
Should I be using the reader for this, or is there some setting in my command (I already set the timeout to 0) I should be making
Thanks!
Normally, I would make my connection, use the dataadapter to move the data to a datatable, use the datatable to change the data, then put the data back with a SQL insert statement
I am getting a MaxRows error which I can only read from the stack trace. The actual error message is " ", which helps a whole heck of a lot.
I am assuming there is a max row limit for SQL query like this, or for datatables (I know I have moved larger amounts of data with MySQL)
Should I be using the reader for this, or is there some setting in my command (I already set the timeout to 0) I should be making
Thanks!