Search found 53125 matches
- Wed Jun 21, 2006 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 issue with SQLTABLES
- Replies: 7
- Views: 2277
SQLTables is a function used by the API to retrieve a list of available tables in a database. Looks like, perhaps, its name is being translated to upper case by the (?) database server or the (?) calling mechanism. Or maybe there is a system function that you don't have privilege to execute. Check w...
- Wed Jun 21, 2006 2:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to create the Stage editor Object?
- Replies: 6
- Views: 8468
- Wed Jun 21, 2006 2:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to create a XML output
- Replies: 4
- Views: 977
- Wed Jun 21, 2006 2:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job status code
- Replies: 5
- Views: 1082
If it "has finished with a status of 2" then you don't need to stop it - it has already finished. The Job Activity through which you invoked the job needs to have an OK trigger leading to the next activity. That is sufficient to meet your stated need. I suspect you need some more thought, and anothe...
- Wed Jun 21, 2006 2:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to see for the Environment variable defined for project
- Replies: 2
- Views: 682
- Wed Jun 21, 2006 2:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage 8.0 API Question
- Replies: 3
- Views: 1197
- Wed Jun 21, 2006 2:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installation of DataStage Server/Enterprise Edition
- Replies: 4
- Views: 937
- Wed Jun 21, 2006 2:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: warning in XML
- Replies: 5
- Views: 1392
- Wed Jun 21, 2006 2:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how load balancing will work
- Replies: 2
- Views: 1506
- Wed Jun 21, 2006 2:27 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: how load balancing will work
- Replies: 2
- Views: 2719
- Wed Jun 21, 2006 1:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Run time
- Replies: 3
- Views: 873
Create the base file name then use an after job subroutine (perhaps ExecSH) to rename it.
Code: Select all
mv #filename# #filename#`date +"%YYYY-%MM-%DD %HH:%MM:%SS"`- Wed Jun 21, 2006 1:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stored Proc/Unix Script/DS Routine : which is better ?
- Replies: 1
- Views: 1094
Fourth, and best, option is to use DataStage. A standard lookup will not only determine existence but also return any columns from that row that you specify. Based on the success of failure of the lookup, you can make any further decision required such as setting a value in an IsValid variable or co...
- Wed Jun 21, 2006 12:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get the records from SQL server Table through routine
- Replies: 2
- Views: 964
Welcome aboard. :D You need to access SQL Server through the ODBC driver. Problem is, the one you have is not licensed for your use in code, only for use from the ODBC and Dynamic RDBMS stages. You will find that it works for 30 days, then fails with a message telling you to buy a licence from Data ...
- Wed Jun 21, 2006 12:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Values within some limit
- Replies: 8
- Views: 1647
- Wed Jun 21, 2006 12:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between stopped, aborted and crashed
- Replies: 1
- Views: 959
Aborted is caused by some operational condition such as execution of the DSLogFatal subroutine or an appropriately severe condition being detected in the processing of data. Stopped is "stopped by operator", for example from Director or a call to the DSStopJob subroutine or Terminator activity. Cras...