Search found 76 matches

by krisna
Thu Jun 26, 2008 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed width file
Replies: 8
Views: 2235

Fixed width file

my project requirement is like this I have a fixed width file. Now data has to be tranferred from fixed width file to oracle. to achive this Iam using Sequential file --> Transformer --> oracle enterprise sample data +320+ 20070301 +01+00012+ 00000000 + 00000000 +00001 +319+ 20070401 +01+00012+ 0000...
by krisna
Wed May 28, 2008 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job get locked
Replies: 3
Views: 1861

Hi,

In director,

step 1 :

job -> cleanup resource -> (in job resources dialog) Locks -> show all-> itemid (try to check for that job name and note pid)

step 2:

(in job resources dialog) processes -> show all -> select the PID of step 1 -> select logout.
by krisna
Wed May 28, 2008 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: runtime column propagation
Replies: 3
Views: 1697

I agree with ArndW, answer will be a,b,c,d,e
by krisna
Wed May 28, 2008 6:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: runtime column propagation
Replies: 3
Views: 1697

I agree with ArndW, answer will be a,b,c,d,e
by krisna
Tue May 06, 2008 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Single char to multiple chars
Replies: 9
Views: 3450

Ereplace() function is working fine, but didn't find similar function in PX.
by krisna
Tue May 06, 2008 4:00 am
Forum: General
Topic: Retrieve User Name
Replies: 4
Views: 1643

Use System variable @LOGNAME in datastage job itself.

To my knowledge we can use this system variable only in server jobs.
by krisna
Tue May 06, 2008 1:30 am
Forum: General
Topic: Naming conventions
Replies: 8
Views: 2920

ArndW wrote:Krisna - those aren't naming conventions, but limitations from the product on what characters jobs can contain. ...
Hi,

I agree, I mean to say that when we are using naming conventions also we have to follow the above mentioned limitations.
by krisna
Tue May 06, 2008 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation function to be used in transformer?
Replies: 7
Views: 20588

In transformer we can use ":" for concatenating two strings.

The modify stage alters the record schema of its input data set. The modified data set is then output.

I think modify stage cannot be used for concatenating.
by krisna
Tue May 06, 2008 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation function to be used in transformer?
Replies: 7
Views: 20588

In transformer we can use ":" for concatenating two strings.

The modify stage alters the record schema of its input data set. The modified data set is then output.

I think modify stage cannot be used for concatenating.
by krisna
Mon May 05, 2008 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job status codes
Replies: 3
Views: 2300

We can USE 'dsjob' command at unix prompt to veiw the status code and other information of the job. dsjob -report <project> <job|jobid> [DETAIL | FATAL] dsjob -jobinfo <project> <job|jobid> some of the job status codes follows like this. DSJS.RUNNING = 0 --> This is the only status that means the jo...
by krisna
Mon May 05, 2008 4:43 am
Forum: General
Topic: Naming conventions
Replies: 8
Views: 2920

Re: For Datastage Job

yuva010 wrote:I am new to this tool,

For any Data Stage job can we have dash(-), underscore
(_) to classify it?
Datastage job name should start with alphabet and can have alpha-numeric and also a special symbol underscore(_)
by krisna
Mon May 05, 2008 4:40 am
Forum: General
Topic: Naming conventions
Replies: 8
Views: 2920

Naming standards(conventions) are not common for all the datastage clients. Naming standards(conventions) differs from one client to another client.
by krisna
Wed Apr 30, 2008 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage
Replies: 8
Views: 3805

As suresh said, using of Copy stage after join stage is working fine
by krisna
Wed Apr 30, 2008 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LOG file & datastage job viewing in aix
Replies: 12
Views: 19538

from unix command prompt u can try like this. /opt/dsSoftware/Ascential/DataStage/DSEngine/bin/dsjob -logsum "project" "job|jobid" or from unix command prompt u try like this. change the directory as( /opt/dsSoftware/Ascential/DataStage/DSEngine/bin ) then use dsjob -logsum "...
by krisna
Tue Apr 29, 2008 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pivot stage
Replies: 6
Views: 5373

in pivot stage properties, select outputs tab -> select columns -> give the single column name as 'col1' -> in derivation give all the input column names separated by a space. for ex : - Column name | group | Derivation | key | SQL Type col1 a b c d e integer it works fine