Search found 4992 matches
- Wed Jul 19, 2006 1:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: server engine status
- Replies: 12
- Views: 3879
- Wed Jul 19, 2006 1:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: J2EE in Datastage PX
- Replies: 4
- Views: 1058
- Wed Jul 19, 2006 1:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sybase and Oracle errors
- Replies: 27
- Views: 9465
You're not screwed with Sybase if you can get your hands on a Sybase ODBC driver and install it. Of course, if you're going to do that you might as well install the Sybase client. As for Oracle. how do you expect us to tell you what's wrong if you don't tell us what you're doing and don't even paste...
- Wed Jul 19, 2006 1:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: server engine status
- Replies: 12
- Views: 3879
Start DS Manager and try to connect to the server. If it says the engine might not be running, it's probably not running or you mistyped your userid/password. ps -ef |grep dsrpcd will not do anything but tell you that the daemon is in the process table. You'll have to try to do something. In using t...
- Wed Jul 19, 2006 12:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sybase and Oracle errors
- Replies: 27
- Views: 9465
To talk to Oracle using native Oracle libraries, you have to install those libraries on all servers (Unix or Windoze, doesn't matter) that need to talk to the database server. The same is true for Informix, Redbrick, UDB, and Sybase. If you want to use ODBC, you must make sure that the appropriate O...
- Wed Jul 19, 2006 11:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Message: Cancelling fetchable result
- Replies: 2
- Views: 1308
- Wed Jul 19, 2006 11:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need Routine Function
- Replies: 8
- Views: 2723
You should probably send all errant rows into an exceptions file and then use job control to check the exceptions file. The simplest solution is to use a CONSTRAINT in the transformer stage and two output links. The first output links are the good rows, and the second output link has the REJECT box ...
- Wed Jul 19, 2006 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: server engine status
- Replies: 12
- Views: 3879
- Tue Jul 18, 2006 9:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: regarding extracting data from postgresql
- Replies: 4
- Views: 996
- Tue Jul 18, 2006 8:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sybase and Oracle errors
- Replies: 27
- Views: 9465
- Tue Jul 18, 2006 7:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sybase and Oracle errors
- Replies: 27
- Views: 9465
Welcome! You'll need to go to the DS Engine home directory: cd `cat /.dshome` and edit the dsenv file there. Add the ORACLE_HOME environment variable and point it at the true Oracle client directory. Update the SH_LIBS path to include the Oracle libraries paths as well. As for Sybase, you'll need to...
- Tue Jul 18, 2006 12:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Did you know this about TRIM()?
- Replies: 12
- Views: 2716
Noooo.
Substring notation will not add trailing spaces if you exceed the maximum length of the string. No way.
Put this into a test Function:
You'll see that the end of the string is the end.
Substring notation will not add trailing spaces if you exceed the maximum length of the string. No way.
Put this into a test Function:
Code: Select all
Ans = "-->":Arg1[3,99]:"<--"You'll see that the end of the string is the end.
- Tue Jul 18, 2006 10:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not Able to fetch values from a Hashed File
- Replies: 2
- Views: 638
Welcome aboard! I recommend you read about hashed files so that you understand them completely. This forum has many articles and discussions regarding them. Your problem is probably either the wrong file name, the wrong folder, or the wrong project. If the file exists but you can't see any data, the...
- Tue Jul 18, 2006 10:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: KeyMgtGetNextValueConcurrent
- Replies: 1
- Views: 695
- Tue Jul 18, 2006 7:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic code
- Replies: 10
- Views: 2988
Your Server job design is translated into DS BASIC and then compiled. All supporting Routines, Functions, Transforms, constraints, key expressions, and derivations are DS BASIC. You can't get away from it, you will use it. The only question is whether you want to do more. If you wish to write some f...