Search found 6797 matches

by DSguru2B
Wed Dec 27, 2006 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Stored Procedure in Oracle Enterprise Stage
Replies: 10
Views: 3775

Try it with exec schemaname.procedurename(). Also try without the trailing semicolon. We had different results on different versions in the recent past.
by DSguru2B
Wed Dec 27, 2006 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 7040

Build hashed file and dump its contents to a sequential file. Then use that sequential file to build your lookup set or dataset.
by DSguru2B
Wed Dec 27, 2006 7:21 am
Forum: General
Topic: LC_CTYPE
Replies: 3
Views: 2272

You will be able to find this info in the Install and upgrade guide . The following is directly out of the guide If you have installed NLS, you need to edit the $DSHOME/dsenv file to specify the locale that the server uses (this is separate from the default locales for projects or jobs, which can be...
by DSguru2B
Wed Dec 27, 2006 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id
Replies: 2
Views: 1369

Adding to Ray's suggestion, do an exact search on 'ds_uvput() - Write failed for record id'. You will see that this topic has been covered before, time and again.
by DSguru2B
Wed Dec 27, 2006 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple ODBC stages on one layout
Replies: 5
Views: 1131

I am already laughing :lol: No offense apotluri, i was laughing at Ray's funny comments
by DSguru2B
Wed Dec 27, 2006 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: could not load orchdb2op
Replies: 1
Views: 1440

Check out these two posts. Post 1 and Post 2
by DSguru2B
Wed Dec 27, 2006 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected token error in Db2 OS390 Platform
Replies: 5
Views: 1961

You said its a decimal field right, try 0.00 instead or whatever the prcision is, put that many zeros after the decimal. An arror in the dark
by DSguru2B
Wed Dec 27, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command
Replies: 3
Views: 1262

you need to first set the db2 environment. It is not able to recognize your commands. Try executing cd $DSHOME and then . ./dsenv , that should take care of it.
by DSguru2B
Tue Dec 26, 2006 8:41 pm
Forum: General
Topic: book about datastage and datawarehousing project
Replies: 6
Views: 2962

O really. So Mr. Ray tried to compile a book huh? Nice. See if you can give it another shot Ray. I can assure you that Ill be one of the top few to purchase it. :wink:
by DSguru2B
Tue Dec 26, 2006 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

ftp does convert it from dos to unix and back. I think we needed to ask this question first, why do you need to use that command in the first place???
by DSguru2B
Tue Dec 26, 2006 5:42 pm
Forum: General
Topic: Differences between Join, Merge and Lookup Stages.
Replies: 12
Views: 6437

Good going Kumar. Great post. Everything in a nice table like format. We like tables, we are dw guys after all :wink:
by DSguru2B
Tue Dec 26, 2006 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

Try

Code: Select all

dos2unix file1 > file2
by DSguru2B
Tue Dec 26, 2006 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to extract Excel file...
Replies: 5
Views: 1518

Welcome Aboard :P
Save it as a CSV file or a tab delimited text file. Read it with a sequential file stage and load it to the database. Pass it via a transformer stage and use trim to trim the leading and trailing white spaces. Make sure you specify the columns as varchar.
by DSguru2B
Tue Dec 26, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 5
Views: 846

It could be YYYY-MM-DD, it could be MM-DD-YYYY. You need to tell us that. We will tell you how to get it converted. Actually the website will.
by DSguru2B
Tue Dec 26, 2006 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dos to unix on Linux environment
Replies: 18
Views: 5914

dos2unix and unix2dos are present on some platforms. Try doing man dos2unix or man unix2dos, if there is help present, then it is most probably supported. Only your id doesnt have access to it. You need to contact your system admin for that.