Search found 6797 matches

by DSguru2B
Fri Apr 27, 2007 7:01 am
Forum: General
Topic: non english character in transformer stage
Replies: 4
Views: 1757

Its a basic function and hence will work in a server job or for a basic transformer in px.
by DSguru2B
Fri Apr 27, 2007 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with dsjob running VERY slow
Replies: 5
Views: 3741

The logs that you are retrieving, are they huge? As in, how often do you purge the logs. It takes longer to retrieve and go through 7 days of logs than to go through 2 days of logs. It might just be a shell issue. As you said if you run the dsjob -lparam command from command line its fast but within...
by DSguru2B
Fri Apr 27, 2007 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code for funtion 'GetEnvironment'
Replies: 7
Views: 1738

As sud asked, what you wanted to do, we require that answer to help direct your in the right direction, or was it just your curiousity?
by DSguru2B
Thu Apr 26, 2007 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: duplicates
Replies: 4
Views: 1234

...and you could have gotton that answer just by a simple search. A similar post was answered today.
by DSguru2B
Thu Apr 26, 2007 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Code for funtion 'GetEnvironment'
Replies: 7
Views: 1738

Its hidden. Like other transform functions. Its nothing but a simple env command run during run time. Thats it. Ok maybe a bit more but more than likely, its just that.
by DSguru2B
Thu Apr 26, 2007 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset Duplicates
Replies: 2
Views: 825

A number of ways. You can use sort stage or remove duplicate stage. Referhere.
by DSguru2B
Thu Apr 26, 2007 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping on a sequential file
Replies: 2
Views: 1266

Sure you can. Have an execute command stage do a cat of the file which has the list in a delimitted format (pre-massage the file if its not in that format). Connect this command stage to start loop and in the list specify #Execute_Command_Stage.$CommandOutput# . Another way would be to build a serve...
by DSguru2B
Thu Apr 26, 2007 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameters
Replies: 4
Views: 883

Search on keywords like 'dsjob -param'
by DSguru2B
Thu Apr 26, 2007 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: while staging or while extracting
Replies: 5
Views: 654

20 users is not much. It would be fine if you still go and do a select at the database level. But if you want to do aggregations and order by's in your sql select, the dba might have a problem with it. There are groups that advocate both. Its upto you, depending upon your system, what way you want t...
by DSguru2B
Thu Apr 26, 2007 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: while staging or while extracting
Replies: 5
Views: 654

You are right. Do a table unload to the staging table/file/dateset and go from there, especially if your source will be heavily loaded. But then again it really depends upon what your architect desinged as an inhouse standard.
by DSguru2B
Thu Apr 26, 2007 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 connection issue in sequence
Replies: 12
Views: 2080

You might be right. Just a thought that occured in my mind. I needed clarification on that too. Thanks. So a connection per database stage it is :wink:
by DSguru2B
Thu Apr 26, 2007 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: An interesting scenario of using a Hashed File
Replies: 3
Views: 863

Thats fine. YOu can do it this way. If performance starts to bite, put idices on the date fields. If thats still not enough. Load your source and reference data into work tables and perform the logic at the database level.
by DSguru2B
Thu Apr 26, 2007 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 connection issue in sequence
Replies: 12
Views: 2080

More line one connection per link going to a database stage. So if you have two links going to a database stage, two connections will be request. Right :roll: :?:
by DSguru2B
Thu Apr 26, 2007 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 8346

A bunch of errors. The list is vast. In general, anything thats against the rules of table definition will be rejected. Like data truncation errors, date format incorrect, fk constraints etc. etc.
by DSguru2B
Thu Apr 26, 2007 8:19 am
Forum: General
Topic: How to call a sdk category routine in the transformer stage
Replies: 6
Views: 1620

No need to slow down your job by using a basic transformer just to use ICONV/OCONV. Read your date as varchar and inside a px transformer use the following derivation. StringToDate(in.Date, "%dd-%mmm-%yyyy") In the output stage, go to the column's extended properties and change the...