Search found 592 matches

by JoshGeorge
Thu Nov 01, 2007 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output stage not aggregating XML correctly
Replies: 8
Views: 2886

Re: XML Output stage not aggregating XML correctly

You have not identified and defined the repetition element properly.
dav_mcnair wrote: Any ideas?
by JoshGeorge
Wed Oct 24, 2007 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: first name and last name
Replies: 4
Views: 1912

You can use Field function this way
Field({InputString},{Delimiter},{Position},[{NumberOfFields}])

Code: Select all

First Name: Filed(Input.Field,' ',1,1) 
Last Name: Field(Input.Field,' ',Count(Input.Field,' ')+1,1)
by JoshGeorge
Wed Oct 24, 2007 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check the Data is ready from Source
Replies: 4
Views: 1785

Make a check T_LKP_JOB_STATUS job which will read all the 3 columns - JOB_RUN_DT, JOB_STATUS and JOB_DESC in the status table. Pass this to a transformer stage in this job and if 'all 3 columns are successful' , as noted earlier in this thread set your USERSTATUS (Search the forums for USERSTATUS) t...
by JoshGeorge
Tue Oct 23, 2007 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invacation ID
Replies: 21
Views: 5948

ArndW - Missed the -2 part.
Finding is right, invoking the job with a different invocation id should resolve the issue.
by JoshGeorge
Tue Oct 23, 2007 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invacation ID
Replies: 21
Views: 5948

Controller problem: Error calling DSRunJob - Is because - edw_common_ClearStopQMsg - this job is not in a runable state. You have to do a re-set and run. Check if your compiled base job was called previously and currently not in runnable state or a perticular instance was aborted and you are trying ...
by JoshGeorge
Sun Oct 21, 2007 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data to Table (TeraData)
Replies: 1
Views: 4674

Re: Error while loading data to Table (TeraData)

1. A "Right truncation of string data" error means that a value in a field is too long for the field. These error messages are thrown for specific records which are coming in the above fashion by teradata CLI whilst it rejects those records. This should have been recorded as a warning mess...
by JoshGeorge
Mon Oct 15, 2007 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where is the Reject Data of Teradata Enterprise Stage?
Replies: 12
Views: 8890

Database table ! Names of the tables are ERR_cookie_1 and ERR_cookie_2. Cookie can be found on the terasync table. In that table, you may use start time and end time (integer) fields in order to find the last ones inserted and you cannot modify these error table names. This should lead you to formul...
by JoshGeorge
Sun Oct 14, 2007 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Plug-ins instalation & configuration
Replies: 11
Views: 3427

Your development project and test project are in the same server and sharing the same MQ connection. Development environment jobs are still running with already established connections. If you want to test this check the MQ Manager for active connections on the queue from MQ side. When i execute my ...
by JoshGeorge
Sat Oct 13, 2007 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TeraSession: cli rejected buffer : Any one encountered this.
Replies: 6
Views: 5060

You might have to install a patch for resolving this. Pls. refer this LINK for details.
by JoshGeorge
Fri Oct 12, 2007 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-12154 Error and Possible Job Corruption
Replies: 17
Views: 7890

Old Post... For Records

If the same job is working in one environment and not in another environmebt, then it got to do with environmental settings. First to suspect is the APT_CONFIG_FILE. Check all the servers specified in the APT_CONFIG file for connectivity success.
by JoshGeorge
Wed Oct 10, 2007 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Stage
Replies: 2
Views: 1342

xmli.so related error message may be related to your xml plugin installation/configuration. Check the permissions in the DSEngine/lib directory also.
by JoshGeorge
Mon Oct 08, 2007 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can i have previous month-end date(sept) in this month
Replies: 5
Views: 2365

Are you looking for a specific kind of code? Because this requirement is posted for the 3rd time by same poster.

Answerd here: viewtopic.php?t=113535 and here : viewtopic.php?p=254377
by JoshGeorge
Mon Oct 08, 2007 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to check if 2 numbers are equal in datastage
Replies: 8
Views: 2762

Set the pad character to space and then try. One of your fields might be coming padded with null. If still it is not working, try converting both the fields into numbers and then compare.
by JoshGeorge
Mon Oct 08, 2007 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata table record count mismatch performance statistics
Replies: 4
Views: 3435

To insert 2 million records you might have used one of the database stages which call one of the Teradata Utilities like MultiLoad, FastLoad... DataStage writes all the records into a named pipe or file and loading to Teradata table happens using one of the utility mentioned above. Records rejected ...
by JoshGeorge
Mon Oct 08, 2007 5:59 am
Forum: General
Topic: cut up string
Replies: 4
Views: 2063

Check your syntax:

Code: Select all

string [ start, length ]
ziedkhouja wrote: I try the syntax string [ [ start, ] length ]