Search found 34 matches

by rverharen
Wed Jan 23, 2008 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: location of uvodbc.config file on unix
Replies: 2
Views: 1701

location of uvodbc.config file on unix

Hello,

I am looking for the uvodbc.config- file to add the universe connection to be able to look into hashfiles through the universe stage (i already added the VOC pointer).
Where can i find the file when datastage is installed on unix? (i might have access to the file myself)

Greetings, Roy
by rverharen
Wed Oct 10, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mystery of the missing "File" Toolbar!
Replies: 12
Views: 7486

Log on to another workstation

If you are working on a network environment you have an alternative in logging on to another workstation (WS2) with your current workstation (WS1) still active. On WS2 you still have the file toolbar because your settings are saved when closing down your workstation. So after you're logged on to WS2...
by rverharen
Fri Jun 08, 2007 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a DBMS routine in a after sql statement?
Replies: 2
Views: 903

DSguru2B wrote:Stick in a semicolon at the end of the command. Also try with call instead of exec.
With the call-statement it works now (the semicolon isn't nessacary).
Thanks for the quick response.
by rverharen
Fri Jun 08, 2007 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a DBMS routine in a after sql statement?
Replies: 2
Views: 903

How to call a DBMS routine in a after sql statement?

I want to use the statement: exec dbms_mview.refresh('testroy_mview', 'F') in my after sql statement of an oracle stage (or in a new stage after the oracle stage). The error i get is that my sql statement is invalid although i can run the statement in sql. what's the easiest way to execute such a st...
by rverharen
Fri Jun 08, 2007 6:48 am
Forum: General
Topic: Datastage commit per 1000 rows icw materialized views
Replies: 2
Views: 2070

If your MV is set to refresh on every commit, then don't issue intermediate commits. Leave the Transaction Size at its default of zero, which means only commit once at the end. Doesn't sound like making it a 'manual' step is an option for you. You must commit the changes in your job which will then...
by rverharen
Fri Jun 08, 2007 3:14 am
Forum: General
Topic: Datastage commit per 1000 rows icw materialized views
Replies: 2
Views: 2070

Datastage commit per 1000 rows icw materialized views

I am about to use materialized views in Oracle. A property is to refresh the view when a commit is given on the master table of the view (or on demand). If i have a datastage job which gives a commit after each 1000 rows on this master table, is this going to give me problems with the view? If so i ...
by rverharen
Thu May 31, 2007 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: While loading data from Sybase to Oracle/Sql last byte is tr
Replies: 5
Views: 1363

i have 190 jobs for all i have to modify or any other way .... i heared that one korean characters will stored in two bytes, i our case the call centre people they are copy pasting the descrtiopns in the front ent applications at that time some korean characters are storing half byte only i want to...
by rverharen
Thu May 31, 2007 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: While loading data from Sybase to Oracle/Sql last byte is tr
Replies: 5
Views: 1363

Oracle type Varchar2(CHAR)

make sure the oracle column type = varchar2 (char) instead of varchar2 (byte)

import the table definition again and see that the length in datastage is 4 times the lenght of the column in oracle (use this new length in your stages)
by rverharen
Thu May 31, 2007 3:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance from 86 rows to 1 row per second
Replies: 11
Views: 5307

Adding the hash file solved the problem

I added a hash file between the oracle lookup stage and the transformer. The performance statistics in the jobdesigner made it look like that the problem was on inserting and updating the table (the same table as the lookup) but the problem was the lookup. In the lookup stage i said to read only the...
by rverharen
Wed May 30, 2007 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance from 86 rows to 1 row per second
Replies: 11
Views: 5307

Thanks for your responses

Thanks everyone for your tips. Writing to a file to see whether the problem was in the stage was very usefull as well as the tip to drop the indexes before and add them after the inserts and updates. I also added a hash file to make sure the table I was looking up on had no conflict with the table I...
by rverharen
Wed May 30, 2007 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance from 86 rows to 1 row per second
Replies: 11
Views: 5307

do you have an index on the table. Why do you use only on field in Oracle and not many. What do you means in such a kind of scenario by "Update" I do have indexes on the table and the table contains more columns (only one of them is varchar2 (4000)). Inserting in the table just becomes ve...
by rverharen
Wed May 30, 2007 4:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance from 86 rows to 1 row per second
Replies: 11
Views: 5307

Performance from 86 rows to 1 row per second

When starting a job it starts to run at a 86 rows per second. When inserting en updating more and more data to a oracle table the performance slowly decreases from 86 rows to eventually a 3/1 rows per second. The job doesn't give warnings so the problem isn't the size of the logfile. The table does ...
by rverharen
Wed May 23, 2007 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to subtract one day from a timestampvalue?
Replies: 2
Views: 862

In a server job separate the date and time portions, subtract one day from the day portion, then re-assemble the timestamp. Oconv(Iconv(Field(InLink.TheTimestamp, " ", 1, 1), "DYMD") - 1, "D-YMD[4,2,2]") : " " : Field(InLink.TheTimestamp, " ", 2, 3)...
by rverharen
Wed May 23, 2007 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to load timestamp data into oracle
Replies: 8
Views: 2589

No formats needed when using the default

if you are able to define the format of the field in the flat file, use YYYY-MM-DD HH:MM:SS this is the format that datastage automtically recognizes for timestamp fiels. The field in the oracle database can be date (which also accepts time-indications). You don't have to specify any formats using t...
by rverharen
Wed May 23, 2007 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to subtract one day from a timestampvalue?
Replies: 2
Views: 862

How to subtract one day from a timestampvalue?

I think my question is not so difficult to answer but can anybody tell me the easiest way to subtract one day from a timestamp value?

being a little oracle minded i tried just adding -1 to the deriviation but when running the job, the job aborts.