• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: August 8th, 2023

help-circle

  • RagingHungryPanda@lemm.eetoScience Memes@mander.xyzOxygen
    link
    fedilink
    English
    arrow-up
    9
    ·
    2 days ago

    In Becky Chambers’ Wayfarer series, there is a species who actually breathes methane. The focus though is less on how that actually happens and more on how they navigate as the only species for whom oxygen is toxic. It’s a great series, btw. It’s a not-quite-as-optimistic as star trek future, but still optimistic and with a vast range of species who are all intermingling as learning how to get along.








  • I’ve done a lot of work and no, that is not normal.

    A few things: First - SQL server has tools for migrating data that’s pretty fast. SQL bulk copy can use some of these. Check to see if the built in db tools are better for this.

    SQL bulk copy can handle way more than 15,000 records

    Why are you wrapping a data dump in a transaction? That will slow things down for sure.

    You generally shouldn’t be doing huge queries like that to where you’re nearing the parameter limit.

    Can you share the code?