Search found 558 matches

by ketfos
Tue Nov 01, 2005 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Action Clear Table then Insert Rows
Replies: 8
Views: 1964

Hi, Agree with your observations. The job didnot die due to lack of rollback segments. It was completed. But as mentioned some of old rows were retained. ?? is this option - Clear Table and Then Insert Row option suppose to Delete ALL the rows from the table or not before doing INSERT? ?? If YES, bu...
by ketfos
Tue Nov 01, 2005 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Action Clear Table then Insert Rows
Replies: 8
Views: 1964

Hi,

Yes your observations are correct.

? is this option - Clear Table and Then Insert Row option

suppose to Delete all the rows from the table or not?

Ketfos
by ketfos
Tue Nov 01, 2005 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Action Clear Table then Insert Rows
Replies: 8
Views: 1964

Update Action Clear Table then Insert Rows

Hi, I am loading data from sequential file to Oracle Table. The Update Action for the target table is Clear Table then Insert Rows. The Create Table for target table is Do not Create Table. I ran this first time and job was successful. (input file has 5000 records) I ran this for the second time wit...
by ketfos
Tue Oct 25, 2005 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Replace the "bad" data with the '*" c
Replies: 5
Views: 1312

Hi
You can also check with the following fucntion.

Since this type of data has char values greater than 122 and less than 65,
you may use condition as

if char(Arg1) < 65 or char(Arg1) > 122 then "****" else Arg1

Ketfos
by ketfos
Mon Oct 24, 2005 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequencer
Replies: 1
Views: 852

Hi,
You need to look in Director and view the job log for the sequencer.

Ketfos
by ketfos
Mon Oct 24, 2005 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compile dialog box missing
Replies: 7
Views: 1825

Hi,
Thanks
Do you have the same issue while you try to compile a routine.

Ketfos
by ketfos
Mon Oct 24, 2005 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compile dialog box missing
Replies: 7
Views: 1825

Hi,

1. Were you able to compile your jobs without getting the compile window dialog box?

Ketfos
by ketfos
Mon Oct 24, 2005 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: user defined sql not working
Replies: 3
Views: 1461

Hi Ken,
Does that mean that you cannot have more than one user defined sql in datastage (Query Type)

Ketfos
by ketfos
Fri Oct 21, 2005 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i Stage issues
Replies: 6
Views: 1988

Hi,
How much time does normally the job takes to complete?

2. Have you tried ping command with a)hostname b)ip address.
This will make it sure that DNS is not screwing up. Sometime it works with ip address but fails with host name.

Ketfos
by ketfos
Tue Oct 18, 2005 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running series of SQLs after the job finish
Replies: 2
Views: 881

Hi,
Oracle OCI8 stage allows to write the individual statements seperated with semicolons after each statement to be executed from after tab in the SQL.

Ketfos
by ketfos
Tue Oct 18, 2005 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage installation
Replies: 10
Views: 3189

Hi,
In this case both the sever and client should running under Windows. (on same machine). Of course they will be completing for the same resource.

If the server is running under UNIX, the client and server will be on different machines and client talk to server via TCP/IP.

Ketfos
by ketfos
Mon Oct 17, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion from time stamp to yyyy/mm/dd
Replies: 10
Views: 40821

Hi,
Use internal date function of datastage with Oconv() s follows

Oconv(Date() , "D/YMD[4,Z,Z]")

Ketfos
by ketfos
Mon Oct 17, 2005 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First row reject Sequential to SQL(2000)
Replies: 19
Views: 4289

Hi,
In your job properties for Sequential File Stage, is the column

First line is column names

checked?

Ketfos
by ketfos
Mon Oct 17, 2005 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First row reject Sequential to SQL(2000)
Replies: 19
Views: 4289

Hi,
It looks like your input string contains non-ascii chars .

ketfos
by ketfos
Mon Oct 17, 2005 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First row reject Sequential to SQL(2000)
Replies: 19
Views: 4289

Hi,
Are there any date fields? If yes, are you transforming them correctly from source to target?

Are their any null fields in input? How are you taking care of it?
Ketfos