Does IA convert tasks into SQL and execute?

This forum contains ProfileStage posts and now focuses at newer versions Infosphere Information Analyzer.

Moderators: chulett, rschirm

Post Reply
truenorth
Participant
Posts: 139
Joined: Mon Jan 18, 2010 4:59 pm
Location: San Antonio

Does IA convert tasks into SQL and execute?

Post by truenorth »

When IA conducts an analysis, say RI or data rule, does it execute an SQL code? If so, how does one view the SQL?

Reason I ask is that our DBA is interested in looking at the SQL and determining whether executing the SQL might hamper things in production.
Todd Ramirez
Sr Consultant, Data Quality
San Antonio TX
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

IA does not work that way.

Conceptually the process can be explained in SQL terms, something like SELECT CAST(col1 AS VARCHAR), CAST(col2 AS VARCHAR), ... FROM table but it's really using ODBC API functions. You could, of course, start an ODBC trace to see what's happening.

The raw data are then dumped into the IADB which is used as the source for the acutal analyses, and the results thereof are stored in XMETA.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
tcj
Premium Member
Premium Member
Posts: 98
Joined: Tue Sep 07, 2004 6:57 pm
Location: QLD, Australia
Contact:

Post by tcj »

I would strongly suggest not profiling on a live production database. Profiling can easily bring a production database to its knees.

Best practice method is to run profiling on a copy of the production database.

Tim
truenorth
Participant
Posts: 139
Joined: Mon Jan 18, 2010 4:59 pm
Location: San Antonio

Post by truenorth »

Thanks, Tim, Ray.
Post Reply