Search found 15603 matches

by ArndW
Wed Nov 03, 2010 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Unicode file for SAP Bapi RFM
Replies: 6
Views: 4785

What sort of a machine is your SAP installed on - could it have a different byte ordering from your DataStage server machine?
by ArndW
Wed Nov 03, 2010 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to import file in required format
Replies: 8
Views: 2319

Again, this has been covered many times. In your case you would use stage variables. You would add the ColB values to a stage variable until such time as a new colA value of "name" occurs, then output the string from the transform stage.
by ArndW
Wed Nov 03, 2010 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to import file in required format
Replies: 8
Views: 2319

Ray's suggestion gives you a structured input where the 2nd field contains the values you want. Now all you need to do is a vertical pivot (asked & answered many times here in the forum) and you have your result.
by ArndW
Wed Nov 03, 2010 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ''Dropping component'' warning in LK stage-no same colums
Replies: 4
Views: 1529

In the log file you should have an entry starting with "...Schemas.." where you can check the actual runtime schema for the input link which I still suspect contains your reference column name.
by ArndW
Wed Nov 03, 2010 4:33 am
Forum: General
Topic: Delete/Remove multiple instances of jobs
Replies: 10
Views: 4001

This isn't as trivial task as one might assume. When a job is compiled or imported the instance information is no longer displayed in the director, so a quick method would be to schedule an unconditional import (with binaries) when the job is not active. It isn't a pretty solution, but functional. I...
by ArndW
Wed Nov 03, 2010 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unknown error
Replies: 3
Views: 1974

How many nodes co you have in your configuration file? do you have multiple servers in your configuration? Does the job abort immediately upon processing the first row(s) or after running and outputting data? Have you tried to see if the error persists if you use different number of nodes or turn on...
by ArndW
Wed Nov 03, 2010 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ''Dropping component'' warning in LK stage-no same colums
Replies: 4
Views: 1529

Try setting your environment variable $OSH_PRINT_SCHEMAS to "true" and check both input links to your lookup stage for "Flag1" - my first guess is that you have RCP enabled and are inadvertantly passing in more columns than you think.
by ArndW
Wed Nov 03, 2010 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get Reject records
Replies: 10
Views: 4113

You won't get an "null" values from your source sequential file unless you explicitly define default values and null replacements for each column in your source.
Or do you mean "empty" values rather than "null" - there is a big difference.
by ArndW
Wed Nov 03, 2010 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Undefined symbol: .DSOpenProjectEx
Replies: 9
Views: 4733

As this thraed is 3 years old and most likely there are different versions and libraries involved, it would be best to open a new thread on the topic and to include additional information in the post.
by ArndW
Wed Nov 03, 2010 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage TIMESTAMP datatype
Replies: 8
Views: 2997

I thought you had seen the answer already. You read in your field as a character one, then convert it explicitly in your DataStage job to a timestamp field using the StringToTimestamp() function in a transform stage.
by ArndW
Wed Nov 03, 2010 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Unicode file for SAP Bapi RFM
Replies: 6
Views: 4785

In your output sequential file stage, go to the Stage -> NLS Map tab and enter your file's map.
by ArndW
Fri Oct 29, 2010 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to load japanese characters
Replies: 2
Views: 2999

My mistake in the earlier post, I missed that you have a LATIN1252_0A. The MS-1252 multibyte character set is covered in the ISO-8859 and is a superset thereof, so you can read in UTF from your SQL server and write out to 8859.
by ArndW
Fri Oct 29, 2010 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mapping failed to copy attribute
Replies: 6
Views: 5047

If the problem is reproduceable I would submit it to your support provider as it would seem to be a bug. How big is "big"? We routinely save jobs with over 100 stage and haven't seen this problem.
by ArndW
Fri Oct 29, 2010 10:17 am
Forum: General
Topic: Backup DataStage Projects
Replies: 6
Views: 7468

Unfortunately no such flag exists. I'd also like to see the project level message handlers be included in backup settings.
by ArndW
Fri Oct 29, 2010 9:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime column propagation
Replies: 1
Views: 1049

No, not via RCP. RCP allows you to copy columns across stages without explicitly defining them everywhere, but doesn't perform implicit conversions. There are different approaches you can use if you really want to do this, but they require that you have a list of the column name(s) in your parameter...