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

help-circle





  • I don’t think you’ll be complaining on any of them. Was having gigabit nice? Of course, but 350 is plenty. Most services won’t even transfer that quickly to you and you can run a lot of video streams on that.

    But the main way to tell would be if your router has a traffic meter on it since it has all devices going through it. Otherwise if you’re mainly on PC you can use the task manager to see how much is going on and out













  • 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?