E
Ed Warren
Database1 contains a table of people with addresses (sql Server)
Table: People
MasterID MasterName MasterAddress1 etc.
DataBase2 Contains a table of people and the property they own. (msAccess ->
imported from the sqlServer but detached)
Table Property
PropertyID MasterID PropertyDescription, etc.
I can easily put together oledbdataadaptors to fill a common dataset
(dataset1) with:
People Table
and
Property Table
My task is to generate a table/view something like
SELECT Property.PropertyDescription, People.MasterName, People.MasterAddress
FROM Property INNER JOIN People ON Property.MasterID = People.MasterID;
I'm at a loss as to what Ado.net widget, and/or process to use to do this.
It would be easy if they came from the same database (they sorta do but we
can't go there) ;>.
The only approach I can dream up is to create a temp table in one of the
databases of the data from the other then do a query, but for several
reasons, I would like to find a more 'elegant' way to do this.
Ed Warren.
Table: People
MasterID MasterName MasterAddress1 etc.
DataBase2 Contains a table of people and the property they own. (msAccess ->
imported from the sqlServer but detached)
Table Property
PropertyID MasterID PropertyDescription, etc.
I can easily put together oledbdataadaptors to fill a common dataset
(dataset1) with:
People Table
and
Property Table
My task is to generate a table/view something like
SELECT Property.PropertyDescription, People.MasterName, People.MasterAddress
FROM Property INNER JOIN People ON Property.MasterID = People.MasterID;
I'm at a loss as to what Ado.net widget, and/or process to use to do this.
It would be easy if they came from the same database (they sorta do but we
can't go there) ;>.
The only approach I can dream up is to create a temp table in one of the
databases of the data from the other then do a query, but for several
reasons, I would like to find a more 'elegant' way to do this.
Ed Warren.