Walaa wrote:
I think it depends on your data structure.
Knowing the following might help:
1- your data structure (maybe an example)
2- why you want to turn it into a Target per Entity.
1 - What? You haven't been paying attention to my data structure in all of my other posts the past few days?
2 - Why? Because all the cool kids are doing it! Just kidding. We have lots of tables with similar attributes that we are wanting to collapse into a table inheritance model. Actually, we would have started out as Target Per Entity a year ago, but it wasn't an option at the time.
In regards to my original post, what I was looking for was some advice based on people's experience on whether we should use DTS, scripts, third party utility, etc. The biggest point of concern for us was how to take multiple tables and merge them into one base table and then also still manage to keep all the IDs and foreign keys. Specifically, we had four entity tables that we were collapsing to a base table and in each of the four tables, they all had rows with the same primary key ID.
Long story short: We used DTS and just offset the starting value for each new entity table that we were adding into the base table.
Thanks anyway!