What are you talking about?
The unix sort command? The plugin? Are you attempting to use "sort" on a file and want to use a field that contains a "date" as a key?
Please be more specific.
Search found 4992 matches
- Mon May 09, 2005 12:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sorting 'DATE' using sort command
- Replies: 4
- Views: 985
- Mon May 09, 2005 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running the ODBC driver from Basic in DataStage
- Replies: 6
- Views: 1802
The main benefit of this routine was to address directly a table in Oracle 9 and extract the data returned by a SELECT statement, for further usage in a Basic program. The same effect can be achieved thru a system command call to sqlplus. It's a whole lot cleaner, uses Oracles client software to ma...
- Fri May 06, 2005 2:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stop Link execution
- Replies: 3
- Views: 698
- Tue May 03, 2005 2:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle Bulk Load - Truncate and direct=true options
- Replies: 1
- Views: 472
- Mon May 02, 2005 9:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS job taking long time to finish
- Replies: 4
- Views: 2017
- Mon May 02, 2005 8:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to load subroutine on host (30105).
- Replies: 6
- Views: 4664
- Fri Apr 29, 2005 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSStopJob(DSJ.ME) is failing in JOB CONTROL
- Replies: 2
- Views: 656
- Thu Apr 28, 2005 2:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Command Stage
- Replies: 6
- Views: 1217
If you have a directory structure:
You can make a symbolic link represent the directory:
If you do a
you actually see the same results as doing
You can change symbolic links on demand.
Code: Select all
/aaa/bbb/ccc/ddd/eeeYou can make a symbolic link represent the directory:
Code: Select all
$ ln -s /tmp/xyz /aaa/bbb/cccIf you do a
Code: Select all
ls -l /tmp/xyzyou actually see the same results as doing
Code: Select all
ls -l /aaa/bbb/cccYou can change symbolic links on demand.
- Thu Apr 28, 2005 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Command Stage
- Replies: 6
- Views: 1217
The error message exactly states the problem. The stage is deficient in that you cannot use parameters in the path to the command (kind of irritating, do you agree?). The only solution for you is either environment variables or symbolic links. We've been asking for years to allow this functionality,...
- Wed Apr 27, 2005 9:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage permissions question
- Replies: 6
- Views: 1507
What about giving the users the director priviledge but do not say the important user/pass info (apart from those required to login to DS Server). No, the server login is the DataStage user login. There are no abilities within DataStage to do what was asked. You can setup programmatic solutions tha...
- Tue Apr 26, 2005 2:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage permissions question
- Replies: 6
- Views: 1507
- Tue Apr 26, 2005 12:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01555: snapshot too old
- Replies: 22
- Views: 6080
I will implement this. Do i have to check on Allow multiple instance? How do you I give a name to an instance Concatenating the sequential files after using the MOD function, will that not disturb the original sequence? Or does that not matter? I have never done this before, can you please tell in ...
- Tue Apr 26, 2005 11:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01555: snapshot too old
- Replies: 22
- Views: 6080
- Tue Apr 26, 2005 11:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01555: snapshot too old
- Replies: 22
- Views: 6080
- Tue Apr 26, 2005 10:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-01555: snapshot too old
- Replies: 22
- Views: 6080
All I am doing is selecting all rows from a table in one Schema and inserting it into another table in a different schema "Update action being -Truncate table then insert rows" If this is on the same intance, why not use an efficient script that can utilize parallel query and parallel dml and sqlld...