do something that in my heart of hearts I know is not correct for a database but I can't figure out another way to do it.
background:
I have a table with a list of assets with assets IDs attached (these are given from corporate).
I have a new master table in which in many cases the assetID listed above is used numerous times. This is because originally the asset ID's were given out for whole projects rather than individual assets.
I have given corporate a breakdown of each of these things and new assetID will be assigned so that there will be no repeat numbers any more. BUT I want to track which asset they were originally broken out of.
Ex.
29166 Testing Equipment Project 9371 Cost $31,600
New
33333 Color Analyzer Cost $15,000
33334 Texture Analyzer Cost $13,000
29166 Testing Equipment Project 9371 Cost $3,600
My boss says, just add a new field that says orignal asset # or some such thing. The problem is that asset# will still be in use for many many of the items because I havne't been able to completely break it out. That means in a relationship I'd have a circular relationship right? I'd have that Asset ID table going to two different areas and that's all sorts of wrong. . .
Unfortunately I have a complete brain block on how to fix it. Ideas please?