Search found 2288 matches

by roy
Mon Mar 12, 2012 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fold Basic Routine, Limit on string length?
Replies: 7
Views: 4164

The source data is in Base64 format!
Therefore it has no NLS characters in it!
the output data after coversion is another thing!
This is the whole idea of Base64; to keep data managable for DB or movement via data protocols while nutralizing the whole NLS issues.
by roy
Sun Mar 11, 2012 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fold Basic Routine, Limit on string length?
Replies: 7
Views: 4164

Fold Basic Routine, Limit on string length?

Hi Everyone, I've had to implement Base64 decoding in DS Basic. In short every 4 characters represent 3 characters, so I used the Fold function to create sets of 4 characters to work with. In one case where I convert up to 7k+ characters the job hangs after 50 rows. 10 rows run ok. Does anyone know ...
by roy
Thu Jan 19, 2012 7:07 am
Forum: General
Topic: Unable to load User routine
Replies: 1
Views: 789

So after a second look I noticed that the programer used a function that returns a value but invoked it with the Call MyFunc(a) Instead of using RtValue = MyFunc(a) After correcting that mistake it works fine :!: There was no routine by that name that returns no value therefor DS couldn't locate suc...
by roy
Thu Jan 19, 2012 4:32 am
Forum: General
Topic: Unable to load User routine
Replies: 1
Views: 789

Unable to load User routine

Hi, I'm trying to call a user defined routine from another user defined routine and I run into this problem: Program "DSU.XX": Line 10, Unable to load file "YY". Program "DSU.XX": Line 10, Unable to load subroutine. Attempting to Cleanup after ABORT raised in stage Xfm....
by roy
Mon Jan 09, 2012 7:07 am
Forum: General
Topic: parameterizing the transformation functions
Replies: 16
Views: 6649

You still didn't provide us with a reason why would you need to do this. This is not provided out of the box. Beside the conditional routine to use a predefined set of functions and use the desired function depending on the logic I do believe one should be able to implement such functionality by bui...
by roy
Wed Jan 04, 2012 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error occurred in call to ORPHCallActivePluginInitialize().
Replies: 3
Views: 4010

Hi, You need to refer this to your DS Admins There seems to be an issue with the libraries needed. This might be a simple matter of redirectig the symbolic links of the desired libraries or you might need to reinstall the Stored Procedure Plugin. This should be passed along to your support provider ...
by roy
Wed Dec 28, 2011 6:07 am
Forum: General
Topic: ENVIRONMENT
Replies: 8
Views: 1704

Hi,
As far as I understand,
You are refering to things unique in your organization!
There is no direct need to use citrix as far as the tool is concerned.
by roy
Sun Dec 25, 2011 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Auto Purging of Dataset
Replies: 4
Views: 2962

I think that a periodical cleansing or a preload cleansing will also leave your data sets available for some debuging in case you need them.
by roy
Sun Dec 18, 2011 1:06 am
Forum: General
Topic: Pass Parameters by Reference not by Value
Replies: 4
Views: 2730

You have the USERSTATUS As Craig Said and the UserVariable Stage that you can use to create your on the fly user variable and use it along the flow stream there after. There is no reason to change the value of any givven parameter during the sequence run, unless you try to bring yourself to a debug ...
by roy
Sun Dec 04, 2011 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance degraded after migration from Datstage 7.5 to 8.
Replies: 9
Views: 6133

In my humble opinion, the fact that the only jobs that are connecting to the database are significantly slower, implies that the problem is your database connection. I can't say if the actual connection or perhaps some database optimezer issue or your network configuration, is the one rsponsible but...
by roy
Wed Nov 30, 2011 2:13 pm
Forum: General
Topic: dsjob within ksh scripts
Replies: 5
Views: 3087

Besides what was laready said you can see that kicking your second job is depended on the end of the first one since you use -wait in your run option, so you might experiancing an increase of execution time for the 1st job, did the data processed had an increase on records going into it lately? IHTH...
by roy
Wed Nov 30, 2011 2:06 pm
Forum: Enhancement Wish List
Topic: propagate option and view data in excel or other formats
Replies: 5
Views: 22301

Not sure if this is what you wanted but A> the parallel engine always had the auto propogation feature of existing rows with the only constraint that you don't need any data manipulation on those field B>you can always build a job that extracts some data into a CSV file and open it using excel IHTH(...
by roy
Wed Nov 30, 2011 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import fixed width file schema
Replies: 3
Views: 1969

Hi, This fixed file was created by some other program there for the creator must have the file definitions file. assuming this is a file built by a cobol program it should have a copy book or copy member that defines it. If you get the definition file you should be able to import it and get the tabl...
by roy
Wed Nov 30, 2011 11:59 am
Forum: General
Topic: how to find a job names in a sequence through script
Replies: 3
Views: 1917

Hi, Finding the location of any job inside the project in versions prior to 8 is done by querying the project's repository. This is done by commands you run from the DataStage Administrator. Type this sql and hit the execute button: SELECT * FROM DS_JOBS WHERE NAME LIKE '%JOBNAME%'; in the returned ...
by roy
Wed Nov 23, 2011 8:46 am
Forum: General
Topic: NLS appears in administrator after upgrade from 7.5.2 to 7.5
Replies: 3
Views: 1383

Hi,
NLS is indeed an Installation option.
while the client NLS setting is automatically extracted from your client machine's settings it is required that yu have it installed.
Setting your Server side NLS sould be the one without the CS ending
IHTH (I Hope This Helps),