Search found 339 matches

by vinothkumar
Mon Nov 01, 2010 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 7.5 to SQL Server Connection
Replies: 5
Views: 4417

Check whether you are violating any unique key constraint at your target table.
by vinothkumar
Tue Oct 26, 2010 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user environment variables
Replies: 3
Views: 2348

Are both versions are installed in same unix server. If yes, check the values of the parameters that got populated through Environment variables by seeing the director log.
by vinothkumar
Tue Oct 26, 2010 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row Delim
Replies: 11
Views: 3055

RowDelim will be a Stage variable which will be having some character as value.
by vinothkumar
Tue Oct 26, 2010 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row Delim
Replies: 11
Views: 3055

Did you see the syntax for Field function in help.
by vinothkumar
Thu Oct 21, 2010 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String replacement
Replies: 4
Views: 3240

Look for parallel version of Ereplace function which is posted in this forum.
by vinothkumar
Wed Oct 20, 2010 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage log file
Replies: 2
Views: 1396

Yes Criag. It is in scratch disk area. Thanks.
by vinothkumar
Wed Oct 20, 2010 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage log file
Replies: 2
Views: 1396

Oracle Enterprise Stage log file

Hi, In one of my jobs having Oracle enterprise stage, where I am using Write Method='Load', I am getting the below error. The system(sqlldr CONTROL=ora.6316232.131678.2.ctl LOG=ora.6316232.131678.2.log BAD=ora.6316232.131678.2.log.bad SILENT=header PARFILE=ora.6316232.131678.2.par) failed; see the l...
by vinothkumar
Tue Oct 19, 2010 1:10 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: How to generate sequence number from transformer
Replies: 3
Views: 21804

Do a search in this forum. This has been answered earlier.
by vinothkumar
Tue Oct 19, 2010 7:50 am
Forum: General
Topic: Stage Variable values to Routine
Replies: 2
Views: 1325

You can call the JobStatistics routine through Job sequence instead through Before/After option. Keep your job in a Job sequence and make sure that the JobActivity stage name reflects your exact job Name. When your job is executed successfully execute the routine using Routine stage. Here you can ea...
by vinothkumar
Thu Oct 14, 2010 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to delete all occurences of duplicates from seq file
Replies: 5
Views: 2919

Use remove duplicates stage with GRP and AGE as Key fields.
by vinothkumar
Thu Oct 14, 2010 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic required
Replies: 2
Views: 1345

Use Mod() function. Mod(INROWNUM,3)
If the value is 0 it will go to one link, if it is 1 then it will go to another link and so on.
by vinothkumar
Wed Oct 13, 2010 11:53 am
Forum: General
Topic: To run a job based on the output of the first job
Replies: 23
Views: 8514

Can you check the output for the command you executed from director log .
by vinothkumar
Wed Oct 13, 2010 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequence number generation
Replies: 7
Views: 3834

( (@INROWNUM - 1) * @NUMPARTITIONS + @PARTITIONNUM + 1)
Use the above derivation to get the record count
by vinothkumar
Mon Oct 11, 2010 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Hanging!!
Replies: 8
Views: 2511

In the administrator command prompt, type ds.tools and execute. It will guide you from there.
by vinothkumar
Mon Oct 11, 2010 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count of records processed
Replies: 3
Views: 1781

Add one dummy column(Value=1) while writing into datasets and group by based on that dummy coulmn to get the count.