Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ssis_newbee
Starting Member
8 Posts |
Posted - 2011-07-15 : 03:39:10
|
Hi,I have my Access table structure as followsAccountID useralias1 anm2 ghy3 reni4 maniI need to pass this AccountID Column and Useralias combination to AccountTeam table in SQL Server and fetch AccountTeamIDAccount Team Table StructureAccountID useralias AccountTeamID1 anm 12 ghy 23 reni 34 mani 41 raj 51 rani 61 fella 7If both the tables are in SQL server, i would do a join something likeSELECTa.AccountID,at.AccountTeamID,a.UserAliasFROM Account aJOIN Accountteam aton a.AccountID = at.AccountIDand a.UserAlias = at.UserAliasI know how to do this in SQL, but not sure when both the data sources are different..Please let me know if you need more detailsThanks in Advance |
|
|
|
|