in reply to A database table size issue
You've already gotten a good answer, so I'll just digress a bit.
I don't often see a task to process *every* row in a table where using SQL isn't better choice. It's pretty expensive to serialize each row and ship it to the other machine which does some processing, and then repeats the process to get the data back into the database. Since you haven't mentioned your level of experience with databases, I thought I'd mention a couple things, just in case.
If you want, feel free to share the types of transformations you're wanting and I'll try to help with the SQL.
Update: Typo fix (s/to/too/).
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: A database table size issue
by nikosv (Deacon) on Apr 27, 2012 at 14:54 UTC | |
by JavaFan (Canon) on Apr 29, 2012 at 22:34 UTC | |
by nikosv (Deacon) on May 01, 2012 at 16:24 UTC | |
by JavaFan (Canon) on May 01, 2012 at 16:52 UTC | |
|
Re^2: A database table size issue
by sophate (Beadle) on Apr 29, 2012 at 00:10 UTC |