Search found 53125 matches
- Thu May 09, 2013 4:23 pm
- Forum: General
- Topic: Install Directory and Project Directory
- Replies: 4
- Views: 1104
- Thu May 09, 2013 3:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort operation
- Replies: 4
- Views: 1719
- Thu May 09, 2013 3:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Create Binary Excel file
- Replies: 4
- Views: 1699
DataStage (prior to version 9.1) has no inherent capability to do what you are seeking to do. If you can find a Java class that can write binary Excel files, then you might be able to use that, possibly invoking it from DataStage. If you can find a third party ODBC driver for Excel you could also us...
- Wed May 08, 2013 8:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: transformation throwing compilation error
- Replies: 1
- Views: 1005
- Wed May 08, 2013 8:26 pm
- Forum: General
- Topic: Datastage 8.1 services - scripting start & stop command
- Replies: 4
- Views: 1819
- Wed May 08, 2013 4:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Add one dot (.) in the middle of the record
- Replies: 5
- Views: 1364
Assuming that the value always represents a figure with four decimal places, Craig's solution is apposite for you.
One way to code this would be:
One way to code this would be:
Code: Select all
If Left(InLink.Amount,1) = '-' Then "Cr " Else "Db " : Abs(InLink.Amount / 10000)- Wed May 08, 2013 4:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: converting variable length to fixed length file
- Replies: 2
- Views: 1161
- Wed May 08, 2013 4:20 pm
- Forum: General
- Topic: Selecting a Specific date/time Range
- Replies: 5
- Views: 1027
- Wed May 08, 2013 4:18 pm
- Forum: General
- Topic: Datastage 8.1 services - scripting start & stop command
- Replies: 4
- Views: 1819
Shutdown # Engine DSHOME=`cat /.dshome` export DSHOME cd $DSHOME . $DSHOME/dsenv $DSHOME/bin/uv -admin -stop # Agents $DSHOME/../../../ASBNode/bin/NodeAgents.sh stop # Services tier /opt/IBM/WebSphere/AppServer/bin/MetadataServer.sh stop Startup is similar, except that you use appropriate start opti...
- Wed May 08, 2013 4:08 pm
- Forum: General
- Topic: Export / import jobs
- Replies: 1
- Views: 894
- Wed May 08, 2013 4:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Add one dot (.) in the middle of the record
- Replies: 5
- Views: 1364
- Wed May 08, 2013 3:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: extract dups using 2 columns
- Replies: 11
- Views: 3592
- Mon May 06, 2013 11:34 pm
- Forum: General
- Topic: Difference between IBM InfoSphere and IBM WebSphere
- Replies: 5
- Views: 3007
- Mon May 06, 2013 2:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need solution
- Replies: 6
- Views: 1966
Is there one figure per month per row, or many rows per month, or some other format? Basically, I'd be looking at a solution for muliple rows per month, which I'd aggregate grouped by month. I'd also calculate the most recent year and month in the data and, from that, determine the month and year of...