is it possible to create a union multiple tables within a dataview?? Taking
in consideration that both table will look the same but come from different
connections

select * from table1
union
select * from table2

if so can anyone show me how to do this???

Vince

Re: union and Dataviews?? by Miha

Miha
Thu Jan 22 02:41:54 CST 2004

Hi vincent,

Try DataSet.Merge method - it will merge both table records to one table.
You can't do it through DataView though as DataView acts on a single table
only.

--
Miha Markic - RightHand .NET consulting & software development
miha at rthand com
www.rthand.com

"vincent Blain" <vblain@digitalvoicelogging.com> wrote in message
news:O1vDGAI4DHA.876@TK2MSFTNGP10.phx.gbl...
> is it possible to create a union multiple tables within a dataview??
Taking
> in consideration that both table will look the same but come from
different
> connections
>
> select * from table1
> union
> select * from table2
>
> if so can anyone show me how to do this???
>
> Vince
>
>
>



Re: union and Dataviews?? by David

David
Wed Jan 21 18:44:41 CST 2004


"vincent Blain" <vblain@digitalvoicelogging.com> wrote in message
news:O1vDGAI4DHA.876@TK2MSFTNGP10.phx.gbl...
> is it possible to create a union multiple tables within a dataview??
Taking
> in consideration that both table will look the same but come from
different
> connections
>
> select * from table1
> union
> select * from table2
>
You can fill the same DataTable from two different connections.

David



Re: union and Dataviews?? by David

David
Wed Jan 21 18:44:41 CST 2004


"vincent Blain" <vblain@digitalvoicelogging.com> wrote in message
news:O1vDGAI4DHA.876@TK2MSFTNGP10.phx.gbl...
> is it possible to create a union multiple tables within a dataview??
Taking
> in consideration that both table will look the same but come from
different
> connections
>
> select * from table1
> union
> select * from table2
>
You can fill the same DataTable from two different connections.

David