Issue in Reading Data in Sequential file

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
Manu1
Participant
Posts: 36
Joined: Mon Aug 31, 2009 5:51 am
Location: Hyderabad

Issue in Reading Data in Sequential file

Post by Manu1 »



Hi All,

I have loaded the Data into the Target Sequentil File.But when I am trying to Read the Same its giving the Below Error.

##E IIS-DSEE-TFOR-00089 13:01:15(704) <_ABORT_IDENT_,0> The runLocally() of the operator failed.
##E IIS-DSEE-TFOR-00089 13:01:15(706) <APT_CombinedOperatorController,0> The runLocally() of the operator failed.
##E IIS-DSEE-TFPM-00040 13:01:15(707) <APT_CombinedOperatorController,0> Operator terminated abnormally: runLocally did not return APT_StatusOk
##E IIS-DSEE-TFSC-00011 13:01:21(000) <main_program> Step execution finished with status = FAILED

I tried different ways to Understand the Issue by analyzing the Data that I have loaded from Source.And I suspected that there is Some Problem with the data in the columns in source which has its Datatype as TIMESTAMP.

So,I have reloaded the Data by removing the Fileds with TIMESTAMP datatype and agian tried to View the Data and could able to View it without any Issue.

Could any one give your thought what is the Problem when I tried to view the data with TIMESTAMP columns.

Thx In Advance.

Manu
Datastage Devoloper
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

As always when an error message is from the "APT_CombinedOperatorController", add "APT_DISABLE_COMBINATION" to your parameters and set the value to "true" in order to discover the stage causing the problem.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

:idea: Manu, please stop with the bold and the blue. Just plain old text like this is fine. Really.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Kryt0n
Participant
Posts: 584
Joined: Wed Jun 22, 2005 7:28 pm

Post by Kryt0n »

Have you checked the file on your system? Are you getting any warning messages in your logs? It sounds like your job may actually be rejecting the records due to invalid type.

You get that set of error messages when no records are returned... rather annoying but doesn't seem to be one they are looking to fix any time soon.
dxk9
Participant
Posts: 105
Joined: Wed Aug 19, 2009 12:46 am
Location: Chennai, Tamil Nadu

Post by dxk9 »

Check out the values of the data of the TIMESTAMP field whether it complies with that of the Default TIMESTAMP value (Job's default settings). If not, change the default setting to match to that of the source data or you can import the TIMESTAMP data also as 'Varchar' and then convert to the desired format in the transformer using StringtoTimestamp() function.

I generally import as Varchar and then convert in the later stages and it works perfectly!!

Regards,
Divya
dxk9
Participant
Posts: 105
Joined: Wed Aug 19, 2009 12:46 am
Location: Chennai, Tamil Nadu

Post by dxk9 »

Check out the values of the data of the TIMESTAMP field whether it complies with that of the Default TIMESTAMP value (Job's default settings). If not, change the default setting to match to that of the source data or you can import the TIMESTAMP data also as 'Varchar' and then convert to the desired format in the transformer using StringtoTimestamp() function.

I generally import as Varchar and then convert in the later stages and it works perfectly!!

Regards,
Divya
Post Reply