Search found 53125 matches
- Fri Oct 14, 2005 4:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX training course
- Replies: 8
- Views: 1994
- Fri Oct 14, 2005 4:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: [DataStage][SQL Client]An illegal configuration option Error
- Replies: 4
- Views: 2673
- Fri Oct 14, 2005 4:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Loading Data
- Replies: 2
- Views: 940
- Fri Oct 14, 2005 4:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX training course
- Replies: 8
- Views: 1994
The Ascential/IBM classes are streamed - there are versions of DataStage Essentials for both server and parallel editions. Similarly there are versions of Advanced DataStage. Ascential had an agency in Chennai that can deliver training. Presumably you should now be asking IBM India. But they have no...
- Fri Oct 14, 2005 3:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: code migration
- Replies: 2
- Views: 1248
If you're using Version Control, put them in versioned folders. Otherwise, the scripts using cp or rcp or ftp (etc.) and the jobs using export/import. Hashed files are trickier - a recursive cp will work, but you may find it easier to re-create them once the jobs are in place. You can do this by val...
- Fri Oct 14, 2005 3:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
- Fri Oct 14, 2005 3:47 am
- Forum: Enhancement Wish List
- Topic: Insert Job Parameter in Passive Stage Fields
- Replies: 2
- Views: 1662
- Thu Oct 13, 2005 3:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: to use oracle user defined function in the user defined sql
- Replies: 8
- Views: 1994
- Thu Oct 13, 2005 3:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: remove the locks on the jobs
- Replies: 4
- Views: 1621
Welcome aboard! :D Read the message again. You have to have administrator rights to release locks owned by other processes. Administrators are - theoretically at least - trained to recognize when it's safe to release locks and when it's unsafe. If it wasn't needed to lock objects for editing/monitor...
- Thu Oct 13, 2005 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: [DataStage][SQL Client]An illegal configuration option Error
- Replies: 4
- Views: 2673
- Thu Oct 13, 2005 3:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Ambiguous Error Message!
- Replies: 16
- Views: 4712
- Thu Oct 13, 2005 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reserved characters
- Replies: 3
- Views: 1042
Assuming that it's coming in accurately as Char(255) you certainly can.
Code: Select all
Convert(Char(255), Char(30), InLink.TheColumn)- Thu Oct 13, 2005 3:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid string or buffer length. SQLSTATE=HY090
- Replies: 3
- Views: 3727
- Thu Oct 13, 2005 3:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete Log
- Replies: 3
- Views: 1032
Re: Delete Log
Hi, We have numerous prod jobs which makes the log full. We have a scenario where we want to know which job has created the particular log. Is there is any routine/ utility which can give the tell which log file is been created by which job. Thanks in advance..... Regards The Director client does t...
- Thu Oct 13, 2005 3:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Access DB and spaces in column names
- Replies: 9
- Views: 11705
That's very close to hijacking the thread! Set up the ODBC stage, with the DSN filled in. Then click GetSQLInfo. This goes out to the DSN and retrieves the SQL quote character (which is "`" for MS Access) and delimiter character. So access needs queries like select `table`.`col1`, `table`.`col2` fro...