Hey, Guys!
Trying to figure out how to write (maybe an append query)which is going to update my Access_Table if Particular Fields from dbo_Table are not matching with my Access_Table.
I have two tables:
1st table- is dbo_Customer linked to my Acces Database and I don't know who exactly and when makes an updates to this table. I know it happens overnight...
2nd table- is0000 CONS ACCOUNT my own Access Table that partially gets the info from dbo_CustomerTable, and has different field's names for the entity than in dbo_Customer. For example:
[dbo_Customer].[CustName]=[0000 CONS ACCOUNT].[AccountName]
[dbo_Customer].[REP_Name]=[0000 CONS ACCOUNT].[REP] and so on...
1. What kind of tool can I use to track all the changes happened overnight?
Maybe an Append Query:
Append To AccountName: IIf([dbo_Customer].[CustName]<>[0000 CONS ACCOUNT].[AccountName],[dbo_Customer].[CustName])?
2. Do I really have to specify each field that should be matching ( maybe there is another more effective way to do this?)
3. How can I produce any kind of output saying those particular changes were apllied (giving some kind of list of when and what exactly have been changed, like a macro that would automatically sends the e-mail to certain people, saying that Account Manager has been changed from ...to...).)?
Thank you in advance,
Valeriya
Trying to figure out how to write (maybe an append query)which is going to update my Access_Table if Particular Fields from dbo_Table are not matching with my Access_Table.
I have two tables:
1st table- is dbo_Customer linked to my Acces Database and I don't know who exactly and when makes an updates to this table. I know it happens overnight...
2nd table- is0000 CONS ACCOUNT my own Access Table that partially gets the info from dbo_CustomerTable, and has different field's names for the entity than in dbo_Customer. For example:
[dbo_Customer].[CustName]=[0000 CONS ACCOUNT].[AccountName]
[dbo_Customer].[REP_Name]=[0000 CONS ACCOUNT].[REP] and so on...
1. What kind of tool can I use to track all the changes happened overnight?
Maybe an Append Query:
Append To AccountName: IIf([dbo_Customer].[CustName]<>[0000 CONS ACCOUNT].[AccountName],[dbo_Customer].[CustName])?
2. Do I really have to specify each field that should be matching ( maybe there is another more effective way to do this?)
3. How can I produce any kind of output saying those particular changes were apllied (giving some kind of list of when and what exactly have been changed, like a macro that would automatically sends the e-mail to certain people, saying that Account Manager has been changed from ...to...).)?
Thank you in advance,
Valeriya