Search found 53125 matches
- Tue Nov 09, 2004 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: A question on namespaces
- Replies: 8
- Views: 1765
For consistency of approach and to allow for the possibility that there may be other Transforms created that end up calling the same routine. For example look at the Transforms TIMESTAMP, TIMESTAMP.TO.DATE and TIMESTAMP.TO.TIME, all of which process timestamps, and all of which invoke the same routi...
- Tue Nov 09, 2004 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to count rows extracted from MS Sql table
- Replies: 10
- Views: 3485
Look in JOBCONTROL.H (in the dsinclude directory) to learn that -1 means "invalid job handle". You have not properly specified the first argument (the job handle) for DSGetLinkInfo. Or you have used DSJ.ME as the first argument for DSGetLinkInfo in a routine but not loaded the contents of the JOBCON...
- Tue Nov 09, 2004 2:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inter-process
- Replies: 7
- Views: 1316
- Mon Nov 08, 2004 11:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file lookup
- Replies: 3
- Views: 1515
- Mon Nov 08, 2004 7:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DRS Stage Issue
- Replies: 7
- Views: 1797
- Mon Nov 08, 2004 7:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: i need to see the job names, of a table name given
- Replies: 5
- Views: 896
That sounds like a challenge! It would be a particularly horrible SQL query, and probably end up exceeding the maximum permissible length for a query statement. Even if you knew the internal structure for records in the DataStage Repository. And if you use job parameters for table names, the problem...
- Mon Nov 08, 2004 7:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: parallel extender performance issues
- Replies: 1
- Views: 1145
Go to Ascential web site and search for "benchmark". Read the first article.
- Mon Nov 08, 2004 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DRS Stage Issue
- Replies: 7
- Views: 1797
Welcome aboard! :D Have the column definitions been edited and/or loaded more than once? If the column name has been replaced, it may not have been properly deleted in the Repository, leading to this error. Try removing ALL column names from this link, and then re-loading them. Note that the collect...
- Mon Nov 08, 2004 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File - Unable to open file
- Replies: 2
- Views: 1447
Is it always this particular hashed file? If so, this particular hashed file may be damaged. You can verify this using the uvfixfile utility or the fixtool utility. Otherwise, as Ollie suggested, there may be too many dynamic hashed files open system-wide. Use the command analyze.shm -d to find out ...
- Mon Nov 08, 2004 3:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: unlocking jobs
- Replies: 17
- Views: 6390
You can not use LOGTO from the Administrator client. It is one of a select number of commands (HELP is another) that are explicitly blocked. If you type DS.TOOLS (which brings up a badly-formatted menu) then respond with 5 (which brings up an equally badly-formatted menu), then respond with a zero-l...
- Mon Nov 08, 2004 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: I want to conver varchar to integer
- Replies: 4
- Views: 1390
This may be more efficient. Both the Fmt() function and the Iconv()/Oconv() function can perform rounding/truncation. Rounding is the default.
Code: Select all
If Num(Arg1)
Then
Ans = Iconv(Arg1, "MD0")
End
Else
Ans = (If Alpha(Arg1) Then 0 Else @NULL)
End- Mon Nov 08, 2004 2:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: uvconfig 64 bit files
- Replies: 5
- Views: 2078
Craig summed it up well. Things will not break, if that's what you were concerned with. However, there is a computational penalty (recall that DataStage is primarily a 32-bit environment, so has to construct 64-bit numbers) as well as a space penalty (there are three or five pointers per record, so ...
- Mon Nov 08, 2004 2:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Null data compare
- Replies: 7
- Views: 2079
- Mon Nov 08, 2004 2:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CDC on Oracle requiring primary keys
- Replies: 3
- Views: 1166
Which part of "requires" don't you understand? Seriously, though, CDC uses the primary key as the mechanism for identifying the row(s) that it needs to select. I don't believe that you'll find a workaround. If my memory serves, CDC uses a persistent queue (such as the transaction log) to identify ch...
- Mon Nov 08, 2004 2:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to run jobs in the new version 7.5
- Replies: 2
- Views: 1467
Welcome aboard! :D You're going to have to do some diagnosis. SQLAllocStmt is part of the ODBC API, so I deduce you're using an ODBC stage or a stage type that employs ODBC protocols. Have you correctly configured the ODBC data source name (DSN)? You need to do this not only in .odbc.ini, but also i...