Search found 5168 matches

by kumar_s
Tue Sep 19, 2006 6:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix Error
Replies: 23
Views: 4175

Theoritically, the job should remove all the temp files created, once the job finished ok, but due the reason, the job is aborted, those files are left orphaned.
by kumar_s
Tue Sep 19, 2006 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job log file path
Replies: 7
Views: 3101

If the log is required for analysis, dsjob command has the options to retreive it. -log
-logsum
-logdetail
-lognewest

Optionally, it can be done by printing the log to a file from the DS Director from GUI.
by kumar_s
Tue Sep 19, 2006 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date type cast
Replies: 12
Views: 7984

What error?
Basically, Aggregator handles dfloat. If you get the integer value, you should be able to find the way to use aggregator.
by kumar_s
Tue Sep 19, 2006 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage
Replies: 5
Views: 1287

If understand properly, does your source file has both data as well as the name of the target table to which it has to be loaded?
by kumar_s
Tue Sep 19, 2006 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1338

DS Metadata might match the table metadata, but check if the number of column given in the insert query is in equal number.
by kumar_s
Mon Sep 18, 2006 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job log file path
Replies: 7
Views: 3101

In turns its an hashed file. You can find under your project directory.
by kumar_s
Mon Sep 18, 2006 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering in the sequential stage
Replies: 3
Views: 924

Hi Boppana, The filter option available in the Sequential stage is for pupose of executing some operating system command. As said you can use sort as in unix. You an simply 'cat' the file from the filter option and you can skip the filename option by giving /dev/null. Other than that what is the fil...
by kumar_s
Mon Sep 18, 2006 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdimport Error: Failed to attach to the project XXX
Replies: 2
Views: 3640

Project name is case sensitive. Do you got any error code?
Try to skip /NUA option.
What meena provides is for Export.
by kumar_s
Mon Sep 18, 2006 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gunzip works but suddenly throws up an error.
Replies: 4
Views: 1009

The pattern of filename might not parsed corectly. Check the value of parameter passed to each from the director log on second or third event. Check the value that been passed when you recompile and rerun.
by kumar_s
Mon Sep 18, 2006 6:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to collect rejects while joining to files
Replies: 6
Views: 1582

If you want to produce a report of the rejected rows, you can either opt for the dsjob -linkinfor or DSLinkInfo.
by kumar_s
Mon Sep 18, 2006 6:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CURSOR SQLSERVER => DATASTAGE
Replies: 7
Views: 3700

Do you want to call this from datastage or you want to build the logic in datastage?
by kumar_s
Mon Sep 18, 2006 5:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage hashed file detected
Replies: 12
Views: 5008

If a job failed abrubtly, there will be some event, which will be unlogged. Those unlogged evern will be bought out when doing reset, via "From Previous Log..." eveb. This is the reason for asking to reset when failed. Observe the pattern when it failed and when it was tryed to run with success. You...
by kumar_s
Mon Sep 18, 2006 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning sh: dbx: not found/Xml Tfm stage
Replies: 5
Views: 3860

Signal for segmentation violation may even occur, if Null been handled unexpectedly. Is there any Buildops or any external routines been used?
by kumar_s
Mon Sep 18, 2006 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date type cast
Replies: 12
Views: 7984

It is another similar function as what you tired. Julian data is represented in integer format. It has its own reference date. And the number of days been calculated since that reference data till the given date. The functions available to convert to integer - JulianDayFromDate(). Do the aggregation...