Search found 456 matches

by elavenil
Mon Aug 22, 2005 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cancelling database changes
Replies: 20
Views: 5026

The sequence restarts the job, fromt the job which failed in the last run and restart method would work till the job sequence is compiled. The job sequence will start from the 1st job after the job sequence is compiled. Oracle OCI can be found in 'Database' category in the palette. Would suggest you...
by elavenil
Mon Aug 22, 2005 2:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cancelling database changes
Replies: 20
Views: 5026

Add checkpoint option is to restart the job in the Job sequence from where it failed after the fixing the problem. This would not help rolling back the data in the database. If you want to commit the changes only when insert and update are successful, use OCI stage and enable transaction grouping. T...
by elavenil
Sun Aug 21, 2005 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Capturing
Replies: 4
Views: 1380

You can read the file using OpenSeq/ReadSeq functions. Search the forum/help how to use these functions. DO the error handling based on the obtained exit code.

Regards
Saravanan
by elavenil
Sun Aug 21, 2005 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extract data from two different databases
Replies: 7
Views: 4021

Your DBA could help by creating DBLink to join two databases. Using DBLink may degrade the performance of the query.

HTWH.

Regards
Saravanan
by elavenil
Sun Aug 21, 2005 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing a DOS command
Replies: 6
Views: 1925

Use Jobcontrol to call the batch file. The batch file can be executed using DSExecute function.

HTWH.

Regards
Saravanan
by elavenil
Wed Aug 17, 2005 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: counter needs to be incremented by 1 with exactly 6 digit
Replies: 3
Views: 1115

Hi Pongal,

You can also store the last seq number for each load and increment from that seq number in the next load.

Regards
Saravanan
by elavenil
Tue Aug 16, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting multiple jobs
Replies: 6
Views: 1457

Hi,

In the manager client, the "Extended job view'' option is selected and unselect the option. And follow the steps as mentioned by Arnd then you should be able to delete multiple jobs.

HTWH.

Regards
Saravanan
by elavenil
Tue Aug 16, 2005 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Showing less data in the database
Replies: 13
Views: 4504

Hi Shivan,

Are there any warnings in the director? If there are, can you look at the warnings.

Regards
Saravanan
by elavenil
Mon Aug 15, 2005 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOW TO CALL A ORACLE STORED PROCEDURE
Replies: 5
Views: 1993

There is one way(it may not be nice way) to execute the Oracle stored procudure by calling SQLPLUS utility in Jobcontrol using DSExecute.

HTWH.

Regards
Saravanan
by elavenil
Mon Aug 15, 2005 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help to perfom Vertical Pivot
Replies: 6
Views: 1536

As Kumar suggessted, you can achieve this using Aggregator stage. You can use Max or Sum function to get everything in single row.

Regards
Saravanan
by elavenil
Sat Aug 13, 2005 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning due to seq file in parallell EX
Replies: 6
Views: 2489

Hi,

If you choose 'clear' option in preserve partitioning, the warning message would disappear.

Set 'APT_DUMP_SCORE' env variable to true, then you should be able to identify what partitions are used in the flow/job by viewing log details of job.

HTWH.

Regards
Saravanan
by elavenil
Mon Aug 01, 2005 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to Oracle DB from windows
Replies: 4
Views: 1721

SID (Service Name) , the server IP address and port have to be mentioned in the TNSNAMES.ORA file, which would be one of the subfolders of the folder, where oracle installed. This would be sufficient to connect to Oracle using OCI stage. ODBC DSN has to be created if you access Oracle DB using ODBC....
by elavenil
Mon Aug 01, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Clearing
Replies: 13
Views: 2713

If the file is Sequential file, as Arnd mentioned you can use rm/del to delete the file and touch/echo command to create the file again.

You need to check the OS before executing the commands if the code is common for Windows and UNIX.

HTWH.

Regards
Saravanan
by elavenil
Mon Aug 01, 2005 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User defined SQL
Replies: 8
Views: 4828

Are you able to execute the procedure in the DB environment by using the same id that was used to run SP from DataStage?

Pls check executing the SP and tell us if there is any error.

If it yes, as of my best knowledge you should be able to execute the SP from DataStage as well.

Regards
Saravanan
by elavenil
Mon Aug 01, 2005 2:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hot to pass environment variable in server routine
Replies: 10
Views: 2827

Hi All, Thanks for your inputs. Hi Ray, The error message is as follows. Compiling: Source = 'DSU_BP/DSU.ttrd', Object = 'DSU_BP.O/DSU.ttrd' * WARNING: Variable 'TestInput' never assigned a value. Compilation Complete. Pls let me know if any of the header file to be included. Hi Benny, I am trying t...