Link to home
Start Free TrialLog in
Avatar of Marcus Aurelius
Marcus AureliusFlag for United States of America

asked on

SQL Parser Process for FISERV's Report 0062-001 - Daily Cash Audit Trail Report...?

FISERV is a mortgage / financial industry system that tracks all activity. There is a report that it produces called the "0062-001 Daily Cash Audit Trail Report" that reports on all daily cash payments.

Does anyone know of or have a SQL Process built that will "parse" the text and perhaps load the data from this report into a TABLE of data?

Thanks
Avatar of Anthony Perkins
Anthony Perkins
Flag of United States of America image

Monarch used to be the standard many years ago for parsing reports, but I have not used it in over 15 years.  Check it out here:
http://www.datawatch.com/_products/monarch_pro.php
>> Does anyone know of or have a SQL Process built that will "parse" the text and perhaps load the data from this report into a TABLE of data

Ok, follow the steps below:

1. Start a Profiler trace
2. Generate the Report now
3. Queries used for generating the report would be captured in Proflier trace.
4. Suppose this is your SELECT statement

SELECT *
FROM some_table

then change this to

SELECT *
INTO ur_table
FROM some_table

to get all data from that report load into a particular table of your choice.

Note:
1. You need sysadmin or ALTER TRACE privileges to run the profiler trace.
2. Drop your temporary table ur_table each and every time to get it work.
Avatar of Marcus Aurelius

ASKER

This report is a "proprietary" report of Fiserv's the SQL is NOT accessible. All that I have is an exported format in .TXT format that I'm trying to input into a TABLE. I've achieved it to some degree but I'm certain that I'm not the only one that has to deal with this report and was hoping that someone has a process in place that will parse the .TXT correctly.

I was hoping anyway....
>> This report is a "proprietary" report of Fiserv's the SQL is NOT accessible.

That's internally in SQL Server but if anyone has sysadmin privilege granted on your server, then they can enable profiler trace and capture what is happening on the server. If the report is started when profiler trace is running, then it will exactly let you know what query is being executed so that we can use it to insert records to a temp table.

I believe instead of parsing the *.txt file, my approach would be more easier and scalable
Sorry, I'm not making myself clear....

The report is NOT accessible to SQL Server in any way shape or form. It is delivered by the FISERV system in .TXT form onto a pickup location. FISERV is very adept at keeping their proprietary software hidden and secret from public.

I actual believe it is a DB2 platform, IBM old mainframe type setup if I'm not mistaken, it is actually looks alot like the old "blue screen" systems of yesteryear....  : )

So anyway,...the actual SQL that processes this report is NOT available in any form or fashion.

I was hoping that someone in the Mortgage Information Technology Industry has already dealt with this type of .TXT parsing for this specific report and could share their process or stored proc....

Thanks
CRXIuser2005,

Since I am not familiar about FISERV, I have requested Moderators to include more zones for this question so that you can get some valuable responses from other experts..

It seems your choices are quite clear:
1. Build your own customized report parser as we have done in my shop or
2. Purchase a third party product that does the same.

Your choice will depend on your expertise and the time you have to develop.  Cost will and should not be a factor.
AC,

Ever heard the term "sharing is caring"...?  : ) Just kidding,... the thing is I knew this before I asked the question....

Thanks for your input though.

CR
ASKER CERTIFIED SOLUTION
Avatar of Anthony Perkins
Anthony Perkins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I know AC, just kidding,...I'm sure your process is now "Proprietory" anyway,...right...?

Thanks, we'll figure it out...