• 0 Posts
  • 9 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle
  • Source code is like the recipe to create a program. Compiling the source code is like cooking or baking a recipe.

    You can look at the end result and attempt to reverse engineer how it was made, and might even be able to produce a copy that is indistinguishable from the original. Without the original recipe/source code, you’ll never know for sure if there is anything missing from your reproduction however.

    Open source code is like a recipe that is posted freely online or otherwise openly distributed. Closed source code is like a proprietary recipe that is only known by one company/restaurant.









  • Been a little while since I worked on ODBC stuff, but I have a couple of thoughts:

    • Would it be possible to use something like a table function on the DB side to simplify the query from the ODBC side?

    • I could be misremembering, but I feel like looping through individual inserts with an open connection was faster than trying to submit data in bulk when inserting that much data in one shot. Might be worth doing a benchmark in a test DB and table to confirm.

    I know I was able to insert more than 50M rows in a manner of single digit hours, but unfortunately don’t have access to that codebase anymore to double check the specifics.