Search found 25 matches

by Govindarajan
Tue Dec 04, 2007 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node pools
Replies: 6
Views: 2535

Re: Node pools

Create a separate configuration file under /opt/Ascential/DataStage/Configurations directory and at job level insert the environment variable APT_CONFIG_FILE and assign the file name you have created.
by Govindarajan
Tue Dec 04, 2007 3:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tab delimiter
Replies: 3
Views: 2129

Re: Tab delimiter

The predifined delimiters are available as a list Stage->Output->Format properties. The available delimiters are

whitespace
end
none
null
comma
tab

choose tab here. if any thing other than the mentioned above you can directly type the character.
by Govindarajan
Tue Dec 04, 2007 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading in Teradata table
Replies: 6
Views: 6028

Re: Error while loading in Teradata table

Try to drop the teradata error tables and log table and restart the job. The error table has not been dropped due to previous abort.
by Govindarajan
Thu Nov 29, 2007 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX job with Teradata Mload taking too long to execute
Replies: 7
Views: 4440

Re: PX job with Teradata Mload taking too long to execute

a) First Make sure that all your datasets are created with Parallel Option.
b) Make sure that all three datasets has same key and order before passing into funnel stage
c) Instead of Teradata MLoad use Teradata Enterprise stage
by Govindarajan
Thu Nov 29, 2007 3:38 am
Forum: General
Topic: Error while trying to retrieve text for error ORA-12154
Replies: 18
Views: 14143

Re: Error while trying to retrieve text for error ORA-12154

Check with do you have an entry "TNSNAMES.ora" in SQLNET.ora file. Since you have modified the IP (server) also check the relative information in your drivers file. Also check your datastage Oracle configuration file (tnsnames.ora).
by Govindarajan
Fri Nov 23, 2007 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference b/w job parameters and environment variables
Replies: 3
Views: 994

Re: difference b/w job parameters and environment variables

Environment variables are at PROJECT level and can be used any jobs are sequencers developed under the project, Whereas job parameters are at job level. On top of it you can create a environment variable and re-assign the value at job level.
by Govindarajan
Fri Nov 23, 2007 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how we will identify how many partions are there in our job
Replies: 3
Views: 1095

Eventhough if you have 4 or 8 node configuration, the DS may or may not use all nodes. So the only correct option is to check the monitor while running the job. it shows as stage X 2 or StageX4 etc
by Govindarajan
Wed Oct 24, 2007 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what parameters to specify to open XML in internet explorer
Replies: 4
Views: 1494

XML

add the following syntax in begin and end of your XML.

begin

<ALL>
(this should be the first line)
</ALL>
(this should be the last line)
by Govindarajan
Tue Oct 23, 2007 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reverse Pivot in Parallel Jobs (DS8) ?
Replies: 7
Views: 6688

Re: Reverse Pivot in Parallel Jobs (DS8) ?

Reverse PIVOT in datastage is too slow and best way to handle is

a) Push the dataset or data into a physical table
b) write select statement from the table using CASE statement
c) push the result into target
by Govindarajan
Wed Jun 20, 2007 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading and Deleting in a Single Unit of Work
Replies: 7
Views: 1698

Re: Loading and Deleting in a Single Unit of Work

ag_ram wrote:Hi Folks

Is it possible to load data into an oracle table and delete some records based on a certain condition on the same table , and maintain these as a single Unit of work ?
You can create userdefined SQL and place inside the After tab page. This will work.