Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6124233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:06:33+00:00 2026-05-23T16:06:33+00:00

I have a small utility script written as .Net/C# console app purely for the

  • 0

I have a small utility script written as .Net/C# console app purely for the reliable SQL Server drivers, that twice a day essentially iterates over 70,000 records in SQL Server DB, does a bit of JSON wizardy with a Linq Projection into a JObject and sends the Json Object over HTTP to a NoSQL db.

var  command = sqlConnection.CreateCommand();
            command.CommandText = "SELECT * FROM MotherFckinBigTable";
            var reader = command.ExecuteReader();

            int loopCount = 0;
            while(reader.Read()) {
 // convert reader to JSON object
 // stringify json object
 // webclient uploaddata to couchdb

}
}

Since I never have to go back or skip, its a simple start to end iteration, I’ve not used paging here or Linq or LLBLGen etc.., but I was wondering is this severely frowned upon, if reviewed would a DBA have a heart attack? Or in this scenario is it acceptable? Bearing in mind this a utility script.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T16:06:34+00:00Added an answer on May 23, 2026 at 4:06 pm

    In almost every case you should aim to keep close your database connection as soon as possible. I wouldn’t say that there is too much wrong with your query (assuming that it is fit for purpose). However there is a problem the amount of processing that you’re doing whilst keeping the database connection open. You might want to consider refactoring your utility to keep the database connection lifetime to a minmum by sending the processing of your domain object to a queue or another thread.

    You might want to use something like the following:

    using (var  command = sqlConnection.CreateCommand())
    {
        // Use specific column names and the table schema to improve query execution speed.
        // Use the NoLock if phantom reads are not going to be a business issue.
        command.CommandText = "SELECT [ColumnName], [ColumnName] FROM [Schema].[TableName] WITH (NOLOCK) "; 
        var reader = command.ExecuteReader();
    
        while(reader.Read()) {
            // Set properties on domain object (or use AutoMapper) - and don't forget to use a try / catch / finally if it is needed.
            // Asynchronously send the domain object onto queue or another thread which will convert to Json and send to CouchDb.
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a few small utility applications in Clojure that I compile into
I have a small utility that I use to download an MP3 file from
I have a small command line utility project that I'm using Maven to manage.
I have a small VB.NET application that I'm working on using the full version
I have small utility that does some processing on a file and changes the
I have a small utility application that handles sockets, both TCP and UDP. Occasionally,
I have small problem with my .net 2.0 winforms application. I want to embed
I have a small JS function that does Ajax for me and another like
I have a small diagnostic VB.Net application ( 2 forms, 20 subs & functions)
I have a small application I am working on that at one point needs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.