Search found 459 matches

by T42
Fri Mar 18, 2005 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Record Types in sequential files
Replies: 5
Views: 2181

Import as a single varchar record.

Filter/Transform based on the first set of characters.

Column Export/Transform to split up the columns in a specific format.

Play on.
by T42
Fri Mar 18, 2005 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing records need help
Replies: 7
Views: 2846

Have you ensured that the log is not saying anything negative (such as dropping records)?
by T42
Fri Mar 11, 2005 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export DataStage Jobs as XML
Replies: 5
Views: 6160

I believe there IS an option to export as XML. However, I do not know what this option are. I do not have access to a server at the moment to experiment with this.

Play around with that script chulett suggested. Hope you know DOS batch script language.
by T42
Fri Mar 11, 2005 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ERROR ON ODBC STAGE "SQL_MAX_TABLE_NAME_LEN "
Replies: 1
Views: 1435

There is apparently a limit on tablename set somewhere. Thus, the tablename is invalid/truncated/whatever.

I do not know how to resolve this, other than to try shorter tablenames.
by T42
Fri Mar 11, 2005 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController ???
Replies: 2
Views: 1223

You have a non-nullable field that was provided NULL. Whoops. DataStage's default behavior is to drop the entire record.

Do a search for a recent posting about this. I ranted pretty good, and provided some tips on how to figure out where the errors really are.

(APT_DISABLE_COMBINATION)
by T42
Fri Mar 11, 2005 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete table before loading
Replies: 15
Views: 6930

Now put down that Universe weapon and slowly back away. It's dangerous to manipulate your own project tables directly, even if you think you know what you're doing.
by T42
Fri Mar 11, 2005 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime column propagation
Replies: 3
Views: 1943

This illustrates the problem with the GUI interface to the original Orchestrate engine. On Orchestrate, all you have to really do is define the input and the output, and only the fields you need to transform throughout the OSH code. However, the metadata does not show up on the GUI, so it is difficu...
by T42
Fri Mar 11, 2005 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare stage
Replies: 1
Views: 1546

It means what it says: The input dataset does not have "name". You may have defined it in your metadata, but if the database don't have that field, it won't show up.

Use the DataSet Management tool to observe the defined metadata for the input dataset.
by T42
Fri Mar 11, 2005 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion of DataSet Pointers
Replies: 3
Views: 1533

Use the following command: $APT_ORCHHOME/bin/orchadmin delete [dataset header file] This will delete not only the header file, but all the reference files. You do can point those dataset files elsewhere using your APT_CONFIG_FILE configuration (Disk). See the file "man_gde.pdf", chapter 11...
by T42
Fri Mar 11, 2005 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator to sum up the values on month wise
Replies: 2
Views: 2271

If you want to count the months, you can get MonthFromDate(). If you want to count the days... MonthDayFromDate(). There are a number of options you can use -- just look at Appendix B ("Functions") on your Parjdev.pdf file.
by T42
Fri Mar 11, 2005 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Add a number of days to a Date in PX job
Replies: 3
Views: 2587

Code: Select all

DateFromJulianDay(JulianDayFromDate(input.field) + 185))
nuff details?
by T42
Thu Mar 10, 2005 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatting in PX
Replies: 4
Views: 1913

There's many different ways to skin a cat...

parjdev.pdf - Appendix B - Functions.

Post here if none of them seems to fill your requirements, and we can present you with solutions.

However, first use a search to make sure nobody else already asked and we answered.
by T42
Thu Mar 10, 2005 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Trannsformer column dropped
Replies: 12
Views: 8000

Oh great. Heh. I wish I have access to Oracle to help. Sorry.
by T42
Thu Mar 10, 2005 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage
Replies: 2
Views: 1510

All up to 7.5 does not support flexible naming convention. Just insert a copy stage before one of the links, and rename the field.
by T42
Thu Mar 10, 2005 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem Importing Job Definitions "objects ignored"
Replies: 5
Views: 2641

Arand is correct. The types you mentioned are generally stuff that are provided by default per installation. You did not have to extract EVERYTHING. You can just extract the job design if you are willing to recompile on the production code, or include the job executables. That's all you really need ...