Search found 48 matches

by oracledba
Mon Aug 11, 2014 3:54 pm
Forum: Site/Forum
Topic: premium membership ACCESS ISSUE
Replies: 6
Views: 11565

premium membership ACCESS ISSUE

It has been more than 48 hours since i purchased premium membership
to dsxchange and my profile is not updated.

oracledba

please moderator approve access to premium membership so I can access premium content. 8)
by oracledba
Tue Apr 29, 2014 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Too many columns in record" - How to resolve this
Replies: 11
Views: 11976

Re: "Too many columns in record" - How to resolve

Also there is another reason this error could pop up. This happened to me.
When you have a field name in the source file that you forgot to include in the output columns list then the exact same error pops up. :twisted:
by oracledba
Wed Oct 30, 2013 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Server Job V8.5 OracleDB Date Not Loading Properly
Replies: 3
Views: 2391

any other suggestions anybody????
by oracledba
Wed Oct 30, 2013 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Server Job V8.5 OracleDB Date Not Loading Properly
Replies: 3
Views: 2391

Datastage Server Job V8.5 OracleDB Date Not Loading Properly

Here is a peculiar error. In a datastage server job, My source data from a sequential file has date field with following value yyyymmdd Date 20121017 I am loading into oracle DB however that column in the database shows up as '21-JUN-57' (This is 06/21/7057) I am not doing any transformations on the...
by oracledba
Mon Oct 21, 2013 1:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 5160

i want all rows to be returned when duplicates are present during lookup
by oracledba
Mon Oct 21, 2013 1:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 5160

if you want to allow duplicates can you use another stage?
by oracledba
Mon Oct 21, 2013 12:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of Hashed File Stage
Replies: 10
Views: 7769

IBMDS4KK wrote:The option which you mentioned 'Right Click' on the stage is not working, When i do this it will display like unable to open the file.
Dont right click..... Double click on hash file stage. go to output tab. click on view data
by oracledba
Mon Oct 21, 2013 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 5160

so if i want all the records to come in is there some property i can enable to make it happen.
by oracledba
Mon Oct 21, 2013 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 5160

All records not loading into hash file

My Job design is, Oracle------>Transformer------>HashFile There are 100 records in source however only 50 records are loading into hash file. The performance statistics show 100 records loaded into hash file however only 50 records are there in the hash file. I checked the log and no warning or erro...
by oracledba
Wed Oct 17, 2012 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server to Parallel job conversion
Replies: 6
Views: 3357

Some things to consider when doing Sever to Parallel job conversion -Datastage parallel jobs can run in parallel on multiple nodes. Server jobs do not run on multiple node. -Parallel jobs support partition parallelism(Round robin,Hash,modulus etc.), server jobs don't support this. -The transformer i...
by oracledba
Wed Oct 17, 2012 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Import Converts Date into Timestamp
Replies: 3
Views: 2018

if the oracle database has it as date then simply change it in the metadata definitions pull down for SQL Type and change to date. You have to make sure to use the data type that the source oracle database says it is.
by oracledba
Wed Oct 17, 2012 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to timestamp conversation
Replies: 6
Views: 7167

StringToTimestamp(lnk_CONV.TS4,"%yyyy-%mm-%dd-%hh.%nn.%ss.%SSSSSS")



simply only include this

StringToTimestamp(lnk_CONV.TS4)

the extra fitting is causing the error.
by oracledba
Wed Oct 17, 2012 12:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source datatype
Replies: 1
Views: 1308

not a bug. this is a legitimate warning I am going to assume the record name is DBUSER This mismatch is happening because your source database has the field DBUSER defined as decimal (38,10) and your target database has it defined as int64' . Whatever the reason may be there is a simple fix for this...
by oracledba
Tue Oct 16, 2012 1:54 pm
Forum: General
Topic: Object Variable or with variable not set
Replies: 11
Views: 12633

Reply

adams06 wrote:I cannot find the folder, By the way why we should edit that file only. Pls educate
You cannot find what folder? Tell me until which folder you are able to go to and I will help you from there.

I am asking you to look for a folder similar to that with numbers and letters
by oracledba
Tue Oct 16, 2012 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Possible truncation of variable length string
Replies: 10
Views: 7641

Re: Possible truncation of variable length string

This mismatch is happening because your source oracle database has the field DBUSER defined as VARCHAR2(60) and your source oracle stage has it defined as VARCHAR2(20) . WHatever the reason may be there is a simple fix for this. Just cast it in as varchar 20 in your oracle query in source stage and ...