473,503 Members | 1,731 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DataTable Subset to new DataTable

How would I copy all data from my DataSet that meets a filtering condition to
a new DataTable?

Is this what I want?

DataTable table = new DataTable();
table = DataSet1.Table[0].DefaultView.RowFilter(filterString).Copy();

This still copies over all of the data, but adds a filter. Right?

This also creates a Default View on the first DataTable in my DataSet, which
I do not want.

After copying the filtered data to a new DataTable, I need to further filter
the DataTable about 3 more times and combine it's data with another
DataTable's data and filter that, too.

Any pointers or suggestions would be appreciated.

I wasn't able to locate this information in the Hitchhiker's Guide to Visual
Studio and SQL Server (#7).

Regards,
Joe
Jul 31 '08 #1
1 4757
You may look at the DataTable.Select method, which, granted, returns an
array of DataRow objects, but then you could Add these to a
dataTable1.Clone() in a foreach loop.

Not an all-in-one solution, but you might give it a go.

"jp2msft" <jp*****@discussions.microsoft.comwrote in message
news:DD**********************************@microsof t.com...
How would I copy all data from my DataSet that meets a filtering condition
to
a new DataTable?

Is this what I want?

DataTable table = new DataTable();
table = DataSet1.Table[0].DefaultView.RowFilter(filterString).Copy();

This still copies over all of the data, but adds a filter. Right?

This also creates a Default View on the first DataTable in my DataSet,
which
I do not want.

After copying the filtered data to a new DataTable, I need to further
filter
the DataTable about 3 more times and combine it's data with another
DataTable's data and filter that, too.

Any pointers or suggestions would be appreciated.

I wasn't able to locate this information in the Hitchhiker's Guide to
Visual
Studio and SQL Server (#7).

Regards,
Joe

Jul 31 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
10942
by: jensen bredal | last post by:
I have an array of datarow . Is there a performance efficient way of deriving a datatable oject containing only the rows in my array. ? I want to avoid uding foreach . Many thanks JB
4
5990
by: Rich | last post by:
Hello, I need to store various values that I will need to look up later on. I have been using hashtables and arraylists. But I can only store 2 items per row in a hashtable - key, value, and...
6
28293
by: Pete Wittig | last post by:
Hi, I have a DataTable and I want to get a subset of the rows within it. I use the Select method to get my subset and the results are in a DataRow. I want to put those Rows back into a...
2
2473
by: =?Utf-8?B?Sm9iIExvdA==?= | last post by:
How can I reconcile changes between two data table and create a subset of those changes. I have two data tables with same schema which gets populated from two different xml files. I want to get...
1
1576
by: byrd48 | last post by:
Hi, am attempting to create a DataTable by copying a table from a data set, then filter the rows as follows: DataTable dt = DataSet1.Tables.Copy; DataRow dr = dt.Select("myexpression"); ...
2
2370
by: ciccone1978 | last post by:
Hi everybody, Supposing I have a DataTable with the following columns . I need to copy that DataTable with all its data but filtered by columns, that is I want to have a new DataTable with all...
9
9301
by: Nathan Sokalski | last post by:
I have a DataTable from which I only need a certain range of the DataRows. What I would like to do is copy a range of rows from one DataTable to a new DataTable like the following: For i As...
5
5877
by: jehugaleahsa | last post by:
Hello: What is the point of using a DataTable in ASP .NET? We are unsure how you can use them without 1) rebuilding them every postback, or 2) taking up precious memory. We are not sure how to...
11
4613
by: John Dann | last post by:
Is there a concise/efficient way to retrieve blocks of rows from a datatable with VB2005? I've got a datatable (let's call it AllData), constructed programmatically, that contains a lot of...
0
7203
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7087
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7281
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7334
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6993
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
5014
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
383
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.