Search found 53125 matches
- Tue Feb 08, 2005 8:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Changing database schema name across all jobs
- Replies: 6
- Views: 1507
Job parameters provide insurance against things that can change over time (like passwords and selection criteria) and things that can be different on different environments (like DSNs, passwords, user IDs, schema names, pathnames). You should have made them into job parameters in the first place. My...
- Tue Feb 08, 2005 8:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Parameter value
- Replies: 4
- Views: 834
- Tue Feb 08, 2005 8:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job activity stage within loop stages
- Replies: 3
- Views: 727
Not that way. It is the nature of the design that EndLoop is triggered by completion of the Job Activity. You could have a RoutineActivity in the loop that starts the job asynchronously. But even easier would simply be to have N instances of a Job Activity on the canvas with no dependencies. In this...
- Tue Feb 08, 2005 8:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Source Code
- Replies: 5
- Views: 1169
Server jobs are run by a DataStage BASIC program called DSD.RUN, for which source code is not available. It uses data (metadata?) in the RT_CONFIG file to figure out what to do, what dependencies there are, and so on. Passive stage types expose method functions (some in BASIC, some in C) that are in...
- Tue Feb 08, 2005 7:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading hash file
- Replies: 9
- Views: 2191
Just drag the column name from the Sequential File link into the key expression field. A line will be painted on the canvas to show that this has been done. Make sure that the input from the sequential file is a stream input, not a reference input. Drag columns from both input links onto the output ...
- Tue Feb 08, 2005 3:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading hash file
- Replies: 9
- Views: 2191
- Tue Feb 08, 2005 3:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inconsistant behaviour when using arrays
- Replies: 9
- Views: 2053
- Tue Feb 08, 2005 3:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to join huge flat files together
- Replies: 7
- Views: 3694
If, as earlier posts suggest, your files are all sorted on the same key already, you may be able to use paste alone. You will need the -d option to specify your non-default delimiter character. OR allow the default character (tab) to separate the original lines, and change them subsequently with a t...
- Tue Feb 08, 2005 3:26 pm
- Forum: Enhancement Wish List
- Topic: Server/Parallel Designer - mark objects as 'Inactive'
- Replies: 6
- Views: 2369
- Mon Feb 07, 2005 9:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: julian date conversion
- Replies: 12
- Views: 8780
- Mon Feb 07, 2005 9:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling Null update sql
- Replies: 2
- Views: 1207
It's not a DataStage problem. No database will let you use NULL in an "=" expression. If you need to update a column in which a search column is null, you must use IS NULL explicitly. So you need two outputs. One which does as you've done, but which only passes rows in which both search columns are ...
- Mon Feb 07, 2005 9:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading hash file
- Replies: 9
- Views: 2191
Welcome aboard! :D What do you mean by "practising on hashed files"? Did someone create them for you? Or did you create them and, if so, how? To read the data from a hashed file you can use a Hashed File stage (or a UV stage under certain circumstances - search the Forum for SETFILE). Process this t...
- Mon Feb 07, 2005 8:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: julian date conversion
- Replies: 1
- Views: 972
- Mon Feb 07, 2005 8:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: two tables with single ODBC
- Replies: 3
- Views: 1263
The only restriction is that both tables must exist in the same data source. Beyond that, you can do joins, group by, and so on within generated SQL (with additional clauses on the Selection tab, and aggregate functions in the Derivation cells on the Columns tab). With user-defined SQL you can do th...
- Mon Feb 07, 2005 8:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to round a decimal to highest possible integer
- Replies: 13
- Views: 12347