It's in the registry. You should be able to find entries for everything that shows up in the Host System dropdown under:
HKEY_CURRENT_USER\Software\Ascential Software\DataStage Client\Director\
One entry per host name or IP.
Search found 42189 matches
- Fri Jul 08, 2005 1:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: change list of servers to use when starting Designer/Directo
- Replies: 8
- Views: 2073
- Fri Jul 08, 2005 12:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01036 Illegal variable name / number
- Replies: 12
- Views: 4620
It's not a problem with your sql, per se. It's a mismatch between the sql, the column definitions in the stage and/or what DataStage is expecting. This really only becomes an issue when you use custom SQL. Make sure you have the same number of columns defined in the stage that you are selecting - in...
- Thu Jul 07, 2005 11:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORAOCI8 Stage Error ORA-01438: value larger than specified.
- Replies: 9
- Views: 4382
Unfortunately Gaurav, datastage doesnt point out the column for which its giving error. Actually, it's Oracle that doesn't always point it out. Seems to be dependant on the Client version. Since the message is about precision, then as noted it only applies to the numeric fields. You get to check ea...
- Thu Jul 07, 2005 11:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: usage of Common block across transformer
- Replies: 20
- Views: 6269
- Thu Jul 07, 2005 11:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help find DataStage function !!
- Replies: 10
- Views: 8682
Me48, a couple of points: You don't need to check the results of an IsNull() call against 0 or 1, even though that will work. Being a boolean, it is easier to read if you just say If IsNull(INPUTLINK.COLA) to see if COLA is a null -or- If Not(IsNull(INPUTLINK.COLA)) to see if COLA is not null You do...
- Thu Jul 07, 2005 1:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LOG metadata
- Replies: 2
- Views: 885
- Thu Jul 07, 2005 1:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job with no "Primary Input" stage
- Replies: 5
- Views: 2721
- Thu Jul 07, 2005 8:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: usage of Common block across transformer
- Replies: 20
- Views: 6269
- Thu Jul 07, 2005 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle/DB2/Sql Server date Error
- Replies: 3
- Views: 974
Sounds like you should be fine without using either of the Conv brothers, as you are bringing the field in already formatted as the DRS stage is expecting to see it. Any chance you are shortening the field inside the job somewhere? Perhaps a debugging session - or simply writting your target rows to...
- Thu Jul 07, 2005 7:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generating the IN list for SQL query
- Replies: 4
- Views: 1738
In addition to above I wud like to mention that it is a RTI compliant job with RTI input and RTI output stages. Yikes! That's a pretty important piece of information to leave out. As mentioned, though, this could still be done in one job. In the Server forum you get server answers. I'd suggest repo...
- Thu Jul 07, 2005 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reading sequential file
- Replies: 8
- Views: 3024
- Thu Jul 07, 2005 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job sequence problem
- Replies: 4
- Views: 1057
Three answers: 1. Custom trigger code to send down your Ok link when the job finishes with a $JobStatus of 1 or 2. 2. Have your Ok link set to 'Otherwise' so that aborts go down your failure link and everything else goes down the ok link. Dangerous as things can fail with more than just an 'Abort' s...
- Thu Jul 07, 2005 7:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generating the IN list for SQL query
- Replies: 4
- Views: 1738
The fun part is the "not mentioned in the input file" part. I'd suggest two jobs or at least two 'steps' which you could put all in one job if desired. The first to parse the XML and load the userids from it into a work/temp table in your database. Then a second to do your SQL join and extract where...
- Thu Jul 07, 2005 7:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: array size and transaction size
- Replies: 7
- Views: 2263
You should be able to find that information from the Help button inside the stage, I would think. Short version: Array Size is the number of rows read or written at any one time. Properly setting it can improve performance. In other words, an 'array' of records of that size is passed down the link a...
- Wed Jul 06, 2005 11:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge 240 flat-files into one and then process using DataSta
- Replies: 10
- Views: 2874