Search found 56 matches

by nikhilanshuman
Wed May 26, 2010 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe table column structure query
Replies: 1
Views: 2047

Universe table column structure query

Hi, When i use following query in TCL : SELECT * from RT_STATUS415; I get following data : TestJob.Befor e.1 TestJob.After .2 TestJob.Befor e.oeeDimFF Also, LIST.DICT RT_STATUS shows only one column name '@ID' DICT RT_STATUS 09:43:47am 26 May 2010 Page 1 Type & Field......... Field. Field..........
by nikhilanshuman
Mon Apr 12, 2010 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Change Capture stage.
Replies: 3
Views: 2783

rohithmuthyala wrote:Change capture stage will not sort the data by default on key column. One needs to sort the data and hash partition the data on key column(s) explicitly in sort stage or in the same stage.
Thanks Rohit.
But in that case what will the ""Sort Order" option do in change capture stage?
by nikhilanshuman
Sun Apr 11, 2010 10:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Change Capture stage.
Replies: 3
Views: 2783

Sorting in Change Capture stage.

Hi, As per the DS Manual "The change Capture stage assumes the data to be sorted and hash partitoned". But,in the "Properties tab" of Change Capture stage,the "Sort Order" option is also present. Does it mean that change capture stage will by default sort the data on th...
by nikhilanshuman
Sun Apr 11, 2010 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job logs not seen
Replies: 2
Views: 2929

Search forum for "RTLogging".You will get the answer.

This link may help : http://dsxchange.com/viewtopic.php?t=13 ... f7a4ff5f58
by nikhilanshuman
Thu Apr 08, 2010 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Compare 2 dates
Replies: 17
Views: 10544

ray.wurlod wrote:I gave my solution 40 minutes ago. ...
That's great.I really appreciate the good contributors like you.Keep up the good work...
by nikhilanshuman
Thu Apr 08, 2010 3:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Compare 2 dates
Replies: 17
Views: 10544

What evidence do you have that Oracle is involved? Funnily enough, not everyone in the world uses Oracle. And what is the evidence given that any file is being used?In fact..the source is not mentioned in the question itself... You should try putting solution to the problems..rather than making fun...
by nikhilanshuman
Thu Apr 08, 2010 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Compare 2 dates
Replies: 17
Views: 10544

Okay..So as per your requirement,you need to get all the dates lying between two dates.Then you need to determine days for all those dates. Then,you have to adjust counters accordingly. You will have to create a datastage job and call a stored procedure from the job for this. Following are the steps...
by nikhilanshuman
Thu Apr 08, 2010 2:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Compare 2 dates
Replies: 17
Views: 10544

Re: To Compare 2 dates

Hi, I have 2 dates. One is migration date which will alwyas have a fixed value.Migration date is passed as job parameter. The other date is coming from source and will have different values. I need to compare 2 dates and if the difference between the 2 dates in greater than 3 working days, I need t...
by nikhilanshuman
Mon Apr 05, 2010 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scanning the Dataset
Replies: 1
Views: 1663

Datasets are stored in internal format.These can not be searched directly. You will have to write a shell script to accomplish this. Datasets can be viewed using ORCHADMIN DUMP command.You will have to implement this logic in you shell script. Following are the steps : a) In the shell script,accept ...
by nikhilanshuman
Mon Apr 05, 2010 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing a file which has more than 1500 columns
Replies: 2
Views: 1923

adding the record number after splitting a file is not a good idea. There are many ways by which the order of the records might get changed. For example : a) Using multiple readers option in sequential file stage will change the order in which the records of files are read. b) What if a record is dr...
by nikhilanshuman
Fri Mar 26, 2010 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Password as Environment variable
Replies: 10
Views: 6206

kamalshil wrote:Thanks nikhilanshuman ,
After adding it as $PROJDEF in sequence i am able to run the sequence.
Welcome! :)
by nikhilanshuman
Thu Mar 25, 2010 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: The configuration does not contain the invoking
Replies: 3
Views: 7308

try searching for "The configuration does not contain".

there are many posts on this error...
by nikhilanshuman
Wed Mar 24, 2010 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server: Unable to locate and update an entity
Replies: 6
Views: 3384

qutesanju wrote:but action set at my target table is insert new or update existing so if in case it's corrosponding entity not found while update so it must insert new record?
but the error message says ... "an action of Update Only has been specified".. !
by nikhilanshuman
Wed Mar 24, 2010 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partition data not showing on one node
Replies: 1
Views: 1960

The operators are running on two nodes. The sequential_row_generator is a sequential stage.It will not run on two nodes.The sort and peek stage are running on two nodes as shown in bold below.(node1 and node2) op0[1p] {(sequential Row_Generator_0) on nodes ( node1[op0,p0] )} op1[2p] {(parallel Sort_...
by nikhilanshuman
Wed Mar 24, 2010 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Password as Environment variable
Replies: 10
Views: 6206

In the job parameters of your sequence,go to the password parameter and set its value to $PROJDEF . Type this manually in the value field for password environment variable.You will see only ** as the value is encrypted. It seems that the password environment variable is imported,but it's value is se...