Originally posted by: SystemAdmin
I've run into the same issue; an altered table invalidates existing trees, even though I used names and not "SELECT *" like you did.
Nancy is using Microsoft Access terms (a "MDB" is an where Microsoft stores it's data, a "query" is their term for a database "view").
As you are using DB2, to insulate table changes from the trees you could create a DB2 "View" (a logical table) and reference the view name in WTX instead. As long as you are making changes to the table with ALTER TABLE (and not dropping and re-creating the table), the view will insulate the changes. Make sure to reference field names in the view, and note you may need to issue grants on the view if it wasn't created by the same user running the maps ( example: GRANT SELECT ON
viewname TO USER
wtxusername )
Unfortunately, if you are dropping and re-creating that will invalidate the VIEW so this idea doesn't help much... You will see "
viewname cannot be used because it has been marked inoperative " errors if a table was dropped.
#IBMSterlingTransformationExtender#DataExchange#IBM-Websphere-Transformation-Extender