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

  • Home
  • SEARCH
  • 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 440441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:52:24+00:00 2026-05-12T20:52:24+00:00

I have a DataTable with the following columns: id msisdn status another_column And a

  • 0

I have a DataTable with the following columns:

  • id
  • msisdn
  • status
  • another_column

And a string[2][n] array (multi dimensional):

{msisdn, status, useless_data} . . .

I need start from 0 to n in string array and search for the msisdn field in data table. And update the status column in the datatable from the string array’s status field.

In datatable msisdn is not unique. More than one column may contain sama msisdn twice or more. However in string array msisdn is unique.

What is the fastest way to match this DataTable and String array and do the stuff above?

Any ideas or help would be appreciated.

  • 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-12T20:52:24+00:00Added an answer on May 12, 2026 at 8:52 pm

    First, I would hope that your string array declaration is more like string[n][2] rather than string[2][n]. For the purposes of this answer I’m going to assume that’s the case and it’s just a typo.

    The fastest way is likely with a DataView, though LINQ to DataSets in .NET 3.5 may be just as good. Something like this:

    DataView view = new DataView(yourDataTable);
    string[][] data = new string[n][2];
    
    view.Sort = "msisdn";
    
    for(int i = 0; i < theArray; i++)
    {
        view.RowFilter = "msisdn = '" + data[i][0] + "'";
    
        foreach(DataRowView row in view)
        {
            row["status"] = data[i][1];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following DataTable dt = new DataTable(); dt.Columns.Add(col1, typeof(string)); dt.Columns.Add(col2, typeof(string)); dt.Rows.Add(1,
I have the DataTable with following columns: id, Name, Description, ParentId and would like
I have a DataTable that has a boolean column called [Invalid]. I need to
In C#/ASP.NET 3.5, I have a DataTable which pulls rows from the database. I
I'm using ICEFaces. I have datatable with multiple columns. One I load the page
I have the following query SELECT * FROM invoice WHERE invoice_id IN (13, 15,
I have a DataTable with a Name column. I want to generate a collection
I have a DataTable that queries out something like below usergroupid...userid......username 1.............1...........John 1.............2...........Lisa 2.............3...........Nathan
I have a DataTable which is bound to a GridView. I also have a
I have a datatable that has a date column, but I am stumped as

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.