In my current system I have absolutely no control over two other sources which I need to map together based on items not being an exact match, but I do know the pattern of the differences (namely one system for what ever reason sometimes adds an "S" prefix to the front of a character string which should map to record in the other system which doesn't include this prefix.
In SQL Server, I am able to do this within the join
FROM A join B on A.No = 'S'+B.No
I then do an update to make the serial numbers match once I know they are both referencing the same item (different data aspects of it in each system which I am combining).
I am trying to use Access 2007 as middleware to but can't come up with a similar way to map the items between the two systems.
In SQL Server, I am able to do this within the join
FROM A join B on A.No = 'S'+B.No
I then do an update to make the serial numbers match once I know they are both referencing the same item (different data aspects of it in each system which I am combining).
I am trying to use Access 2007 as middleware to but can't come up with a similar way to map the items between the two systems.