Search found 106 matches

by dsdoubt
Thu Feb 10, 2011 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API vs Enterprise based on Authentication?
Replies: 1
Views: 1670

DB2 API vs Enterprise based on Authentication?

May I know the Difference between DB2 API stage and Enterprise stage based on Authentication? For the ID that we use to run and connect the DB, We have the Login=False setting in the DB server for a Reason. With this, Enterprise stage is working, but not the API. API is giving out the error as User ...
by dsdoubt
Thu Nov 04, 2010 11:31 am
Forum: General
Topic: Datastage 8.5 Download
Replies: 7
Views: 28759

Datastage 8.5 Download

Is there a Beta version of 8.5 available for download and try in PC for free?
by dsdoubt
Wed Sep 15, 2010 5:53 pm
Forum: General
Topic: Setup configuration from rsh to ssh.
Replies: 2
Views: 1700

One Engine node and multiple Resource nodes.
Like wise, we have Dev, Test, Prod Environments.
There are couple of servers set (Datastage Instance) for each environment.
by dsdoubt
Wed Sep 15, 2010 5:26 pm
Forum: General
Topic: Setup configuration from rsh to ssh.
Replies: 2
Views: 1700

Setup configuration from rsh to ssh.

Hi guys,

We would be converting our server settings from rsh to ssh setup.
For better security purpose.
In Datastage standpoint, what are all the settings and configuration that I need to take care of?
Server OS is Linux.
Database: Oracle, DB2.

Thanks in Advance!!
by dsdoubt
Thu Sep 24, 2009 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comma seperated qouted job parameter
Replies: 2
Views: 1565

I can add escape character only for one value
eg: /'23423423/'

And not as

Code: Select all

 /'23423/',/'23423/'  Or /'234234/'/,/'234234/'
by dsdoubt
Thu Sep 24, 2009 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comma seperated qouted job parameter
Replies: 2
Views: 1565

comma seperated qouted job parameter

Iam passing values such as '234234','3453453','45645645' to a varchar field in ODBC stage as follows in the Where clause column1 in #Jobparameter# Its giving wierd erros, sometime core dump. If i pass the value as '23423' (single value), it works. If I pass multiple integer value 23423,456456,56756 ...
by dsdoubt
Tue Feb 17, 2009 11:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchadmin Path
Replies: 7
Views: 8585

Thanks course.
After exporting Lib path it worked. I guess it was never in dsenv nor in .profile.
by dsdoubt
Tue Feb 17, 2009 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchadmin Path
Replies: 7
Views: 8585

orchadmin Path

Hi, Iam trying to access orchadmin command from command prompt. It gives the following error. ##E TFPA 000021 $APT_CONFIG_FILE was not set, and config.apt was not found in the working directory or in $APT_ORCHHOME/etc. ##F TFCF 000009 Fatal Error: Cannot continue without a configuration file. I thin...
by dsdoubt
Wed Nov 12, 2008 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Remove Non Numeric?
Replies: 8
Views: 10893

Smartie Mike!!!!!
by dsdoubt
Tue Nov 11, 2008 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Remove Non Numeric?
Replies: 8
Views: 10893

I was asking if I need to use Convert function.
If I need to use that, I need to specify all the list of non numeric character in the list. Which I don't want to.
by dsdoubt
Tue Nov 11, 2008 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Remove Non Numeric?
Replies: 8
Views: 10893

How to Remove Non Numeric?

What is the efficient way to remove Non Numeric for a field. Eg: I need to remove the non numeric character in the Field "No" Input ----- ID | No 1|003A23 2|234-456 3| 2333 Output -------- ID | No 1|323 2|234456 3|2333 I dont think I need to specify all the non numeric character in the Con...
by dsdoubt
Mon Nov 10, 2008 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting a Single column
Replies: 5
Views: 2476

How can I assign Col1, Col2 on the fly? If the number of columns changes everytime of the run?
by dsdoubt
Fri Nov 07, 2008 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database connectivity to MS SQL Server
Replies: 3
Views: 2171

Database connectivity to MS SQL Server

Hi, May I know the configuration that we need to do for connecting a MS SQl server from a Unix Datastage Server. We have the odbc.ini updated as follows. WHRPOSDEV=MS SQL [DBNAME] Driver=/opt/nz/lib/lib/libtdsodbc.so Description=MS SQL ODBC Servername=SERVERNAME Port=1433 Database=DBNAME ReadOnly=fa...
by dsdoubt
Thu Nov 06, 2008 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting a Single column
Replies: 5
Views: 2476

This requires, finding the maximum column and then strandadizing the layout then Pivot stage.
But there should be a option with some of the restructure stage. :?
by dsdoubt
Thu Nov 06, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting a Single column
Replies: 5
Views: 2476

Pivoting a Single column

Hi,

Code: Select all

Input
------
Id| Name
1|aa,bb,cc
2|ee,aa

Code: Select all

Output
-------
1|aa
1|bb
1|cc
2|ee
2|aa
How can I acheive the output from the given input.
What is the best "Restructure" stage that can be used to achieve this?