BookmarkSubscribeRSS Feed
ckpotab
Fluorite | Level 6

Hello all,

 

I am currently trying to understand the SAS AML ETL Data models. Could someone help me with some pointers on where can I find details of the tables that are effected by running ETLs from Staging to Core. 

 

Ex. If I run Account ETL, I would like to know what all tables in stage, core, details of the intermediate and underlying tables that are impacted by the execution of that ETL.

 

Your inputs are highly appreciated. Thanks in advance.

Chaitanya.

4 REPLIES 4
SASKiwi
PROC Star

Have you looked through the SAS AML documentation? It's my understanding that you need a special login to look at the SAS documentation for this product because of its sensitive nature.

 

Patrick
Opal | Level 21

The ETL's from Staging to Core are always site specific. They don't come OOTB and you won't find them in the AML documentation.

 

You will need to get your hands on the documentation created at your site.

 

If implemented properly via SAS DIS: There is impact analysis, some reporting and you can also look into the jobs to graphically see which tables get used.

 

In the AML project I'm currently in Core is implemented in Oracle and gets loaded via a non SAS ETL tool.

imranaltaf
Calcite | Level 5

It extract data from staging to AMLCORE schema. usually have same table names as in staging schema.

proc_da
Calcite | Level 5

The source to staging transition will be of simple select and simple functions like cast, and case when statements using joins to join the two or more source table and inserting into the staging table.

 

Its better to ask the ETL Team to share the scripts for better understanding.