Hi,
Normally when we add an alias table to the idt unx data foundation layer generates a table without putting quotes at start and end.
In this case it has put quotes and in tetsing cauisng problems as given table name as table_1 instaed of alias name we have given it and want to see it generate correct table name
what causes this - how can we change it
table_1 - called official_issue_calendar but even despite we name it that when look in dat afoundation at tables calls it "official__issue_calendar"
Why is this and how can we stop it - other alias tables have been fine. Using idt tool bo4 sp08.
SELECT
MEDIA.ISS_ACTUAL_ON_SALE_DATE_M
FROM
MEDIA,
DW.LATEST_PRODUCT_MV,
CALENDAR Table__1
WHERE
( MEDIA.PROD_NUM=DW.LATEST_PRODUCT_MV.PROD_NUM )
AND ( MEDIA.ISS_OFFICIAL_ON_SALE_DATE=Table__1.DAY_DTE AND Table__1.DIMENSION_KEY = Table__1.DAY_ID )
AND
(
( MEDIA.ISS_HANDLED_MONTH_NUM_M = TO_NUMBER(to_char(trunc(sysdate),'MM')) )
AND
( Table__1.MMN_VALUE = TO_NUMBER(to_char(trunc(sysdate),'MM')) )
)
Thanks