I reverse engineered a SQL Server 2005 database, and the RE worked flawlessly with one exception. This block of code is the actual CREATE TRIGGER used to create it in SQL Server (outside of ModelRight):
CREATE TRIGGER [EDW].[ProductUpdateTrigger]
ON [EDW].[DIM_PRODUCT]
...
END
This block of code is what ModelRight reversed engineered:
CREATE TRIGGER ProductUpdateTrigger
ON DIM_PRODUCT
...
END
As you can see, the schema is missing. This causes the database compare / forward engineer to fail.
Can anyone provide guidance?