Search found 53125 matches
- Mon Mar 24, 2008 3:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: compilation taking long time
- Replies: 5
- Views: 2080
When a job is re-compiled and no changes have been made to a Transformer stage that has previously been compiled successfully, the Transformer stage is not re-compiled. This may be what you are seeing. There is a Force Compile option in the menu if you want to force re-compilation of the Transformer...
- Mon Mar 24, 2008 3:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem loading from Sequential file to a Table.....
- Replies: 5
- Views: 2487
- Mon Mar 24, 2008 3:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Convert Cyrillic data
- Replies: 10
- Views: 3532
You need to find out, obviously, how it was converted to Cyrillic characters in the first place (nothing unexpected should happen in ETL). The short answer is that there are character maps between the outside world and DataStage, that convert from and to the external character set. There is no mecha...
- Mon Mar 24, 2008 3:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Server Engine(UniVerse)
- Replies: 5
- Views: 6004
Structure of the various types of records is partially documented for programmers in header files such as DSD_RTSTATUS.H and DSD_CONST.H. You can learn by inspecting these. Other than that, the only way to discover the various structures is by inspection using UniVerse-style non-SQL commands such as...
- Mon Mar 24, 2008 3:17 pm
- Forum: General
- Topic: Which one is efficient join or merge or lookup stage
- Replies: 3
- Views: 1349
- Mon Mar 24, 2008 3:15 pm
- Forum: General
- Topic: general validations
- Replies: 3
- Views: 1402
- Mon Mar 24, 2008 6:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to add months to the Date column
- Replies: 4
- Views: 1692
Then life becomes a little simpler. Fragment your date into year, month and day and adjust each portion before re-assembling your date. Add 1 to year if month >= 7. Add 6 to month if month <= 6 or subtract 6 from month otherwise. Based on the new month calculate the final day of that month. A Field(...
- Mon Mar 24, 2008 6:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Server Engine(UniVerse)
- Replies: 5
- Views: 6004
1. No. There isn't. This is and always has been deliberate policy by the vendor. Further, it's not all done with DataStage BASIC language. Any aspect needing direct memory management is written in C, as are some of the routines for other tasks such as accessing sequential files using the STREAMS I/O...
- Mon Mar 24, 2008 5:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to add months to the Date column
- Replies: 4
- Views: 1692
- Mon Mar 24, 2008 5:23 am
- Forum: General
- Topic: getting duplicates from sort stage??
- Replies: 2
- Views: 1021
Welcome aboard. One of the options in the Sort stage is to perform a "unique" sort, which removes duplicates. But that only gives you the unique values - the Sort stage can not, by itself, send the duplicates to a separate output. There are several techniques - the one explained in the previous post...
- Mon Mar 24, 2008 2:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: file comparision
- Replies: 3
- Views: 838
Please delete your duplicate post on this topic. There are three possible stage types, comparable in terms of efficiency but subtly different in their method of operation. Sounds like you are interested in keeping both source records; that will affect your choice between Change Capture, Difference ...
- Mon Mar 24, 2008 2:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Anyone has encountered this problem before.
- Replies: 6
- Views: 1445
- Mon Mar 24, 2008 2:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The DataDirect ODBC driver problem
- Replies: 1
- Views: 1035
$PROJDEF is not substituted in View Data, but is substituted when the job runs. I have just proven that - I received the same message that you posted when using View Data but, when I ran the job, the message was Message: EnvVarParamTest..TGT_BIOS_C069_OUTNA_HEADER_PART_OWNDELTFILE.TGT_BIOSFILE_DATA:...
Please verify that the name of your job is BIOS_OUTNA_OWNDELT_FILE_GENERATION, the name of your Sequential File stage is TGT_BIOS_C069_OUTNA_HEADER_PART_OWNDELTFILE, and the name of the input link is TGT_BIOSFILE_DATA (just so we can be sure we're all talking about the same component). Can you also ...