Search found 70 matches

by uegodawa
Thu Feb 19, 2009 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSets or Database tables for staging
Replies: 8
Views: 3323

This depends on couple of factors. When ever you want to view a particular record from Table it's so easy to view data but it's so difficult from datasets when no.of records grows. When you want to move staging data from one box to another; if you're using Tables it's easy to move; Since datasets co...
by uegodawa
Thu Feb 19, 2009 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running the job in UNIX
Replies: 15
Views: 5004

If you're running on UNIX (Solaris) this command should work
dsjob -run -jobstatus <your project Name> <Job Name>
by uegodawa
Wed Feb 11, 2009 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: using reference and output as the same file
Replies: 4
Views: 1193

Same business logic can be achieved by creating a server job also. Same hash file is used for Reference and Output.


Input ---- Transformaer ---- Hash File
|
|
Hash File
by uegodawa
Fri Feb 06, 2009 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify
Replies: 9
Views: 2983

I will be getting 4 bytes of data thats for sure. Now what should I do
Then you can make data type as Integer on both sides.
by uegodawa
Fri Feb 06, 2009 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error using Parameters in stage SybaseIQ Load
Replies: 3
Views: 906

Create an environment variables and assign the values over there.

In your job add those environment variables as parameters and set default value to $PROJDEF.

Now, in your Sybase IQ stage variable should look likes #$DBNAME#
by uegodawa
Thu Feb 05, 2009 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify
Replies: 9
Views: 2983

Okay you are trying to assign double to int. double can store upto 8 bytes int can store upto 4 bytes. Suppose your input has 6 bytes. Can you store that value into a int type variable ? In your case either you need to chnage int to double or double to int , depend on your requirement. Otherwise use...
by uegodawa
Thu Feb 05, 2009 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify
Replies: 9
Views: 2983

1. Can you specify the data types of input and output of 'SNo' field.
2. What's derivation you used in Modify stage ?
by uegodawa
Wed Feb 04, 2009 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I unlock a job after it has been killed?
Replies: 2
Views: 2183

DS Admin can unlock jobs using following commands. #cd $DSHOME #/app/ascential/Ascential/DataStage/DSEngine>bin/uv >LIST.READU this will display all the locks, check for that particular job and clear the lock as follows >UNLOCK USER <USER_NO> ALL e.g Device.... Inode.... Netnode Userno Lmode Pid Log...
by uegodawa
Wed Feb 04, 2009 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Email Notification Activity problem
Replies: 6
Views: 5882

if you're using WINDOWS O/S sendmail.exe should be available in your datastage server. Please check that sendmail.exe is installed then try to use following commad from command prompt and verify that you receive emails .

sendmail.exe -f %from% -t %to% -s "%subject%" -b %file% -m %server%
by uegodawa
Thu Nov 20, 2008 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with Script
Replies: 11
Views: 2194

mailx should work for this case.
example :

echo "This is a testing msg." | mailx -s "Subject Line" abc@xyz.com
by uegodawa
Mon Nov 17, 2008 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with XML output format
Replies: 8
Views: 2504

Did you tried with SetNull() in your source fields for blankcolumns instead of '' (single quote, single quote)?
by uegodawa
Mon Nov 17, 2008 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with XML output format
Replies: 8
Views: 2504

Did you tried with SetNull() in your source fields for blankcolumns instead of '' (single quote, single quote)?
by uegodawa
Mon Nov 17, 2008 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Publishing activation date for different Time Zones in XML
Replies: 8
Views: 3046

My Requirement was convert EST to GMT. This is a sample code used for particular task. Input Date : YYYYMMDD Time : HH:MI:SS (24 hour clock) Zone : EST output : Corresponding GMT value YYYY-MM-DD HH:MI:SS * This routine will convert given date/time according to the given time zone * Output will be c...
by uegodawa
Mon Nov 17, 2008 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Publishing activation date for different Time Zones in XML
Replies: 8
Views: 3046

I had the same issue and I wrote a routine and called this rouitine within a Basic Transformer.
by uegodawa
Mon Nov 17, 2008 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Publishing activation date for different Time Zones in XML
Replies: 8
Views: 3046

I had the same issue and I wrote a routine and called this rouitine within a Basic Transformer.