Search found 53125 matches

by ray.wurlod
Wed Aug 10, 2016 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove DataSets
Replies: 17
Views: 6401

You don't seem to understand the structure of Data Sets, Ross. The descriptor file (the file whose name ends in ".ds") contains three things: - the record schema for the data - the configuration file that was used when the data were written - pathnames of the "segment files" in w...
by ray.wurlod
Wed Aug 10, 2016 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Real time Data using Datastage
Replies: 7
Views: 3285

Try ignoring Information Server for the moment, and using a dedicated client like SoapUI to get talking to the web service (it doesn't do anything else). This will aid your understanding of what you need to do in DataStage.
by ray.wurlod
Wed Aug 10, 2016 6:31 pm
Forum:
Topic: Problems importing data via istool Command
Replies: 3
Views: 2711

It would appear that there are extra columns in Excel that are populated with "" values, and these are being exported when you save as CSV. Try to be a bit more selective with which part of the worksheet you save. Or perform your edits using a tool other than Excel, for example Notepad, Wo...
by ray.wurlod
Wed Aug 10, 2016 6:29 pm
Forum:
Topic: import failure via metadata import wizard
Replies: 4
Views: 3014

Have the Oracle credentials changed, and not been updated in this particular project?
by ray.wurlod
Wed Aug 10, 2016 6:27 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Encrypted Data
Replies: 5
Views: 3845

To pick up on Craig's post, an IA virtual table cannot perform decryption. You may be able to create a materialized view or similar, however, and profile that.
by ray.wurlod
Wed Aug 10, 2016 6:26 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Encrypted Data
Replies: 5
Views: 3845

Welcome aboard. A decrypted copy of the data should be analyzed. While, technically, you could perform column analysis on encrypted data, the results (in terms of values, formats, classifications, and even data types) would be unlikely to be meaningful. And I would warrant that profiling for complia...
by ray.wurlod
Thu Aug 04, 2016 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date to String Full Month Name with custom locale settings
Replies: 1
Views: 2230

Use Oconv() function to convert date to string in server Transformer stage.
Also in the Transformer stage use before-stage and after-stage subroutines to call ExecUV, to execute SET.LOCALE commands so that the stage runs in Spanish locale even though the remainder of the job doesn't.
by ray.wurlod
Wed Aug 03, 2016 9:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding comma's to an amount field
Replies: 10
Views: 3582

I have extended the routine so that it handles signed numbers, decimal places, and optional currency prefix of "Rs" or "$". The essentials of the code remain unchanged. FUNCTION LakhFormat(aNumber) If Unassigned(aNumber) Or IsNull(aNumber) Then Ans = @NULL End Else vNumber = aNum...
by ray.wurlod
Wed Aug 03, 2016 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IIS FP2 upgrade from 9.1.0
Replies: 2
Views: 1183

It was many years ago, but I don't recall any major difficulties of the kind of which you ask.
by ray.wurlod
Wed Aug 03, 2016 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generate surrogate keys with SQL Server sequence
Replies: 7
Views: 5775

Set up your Surrogate Key Generator stage to get the next value from the SQL Server sequence.
by ray.wurlod
Wed Aug 03, 2016 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic to generate output files dynamically
Replies: 6
Views: 1810

Use a server job and the Folder stage. If you are required by internal politics only to have parallel jobs, put the Folder stage in a server Shared Container and use that Shared Container in your parallel job. The Folder stage has the capability you are seeking.
by ray.wurlod
Wed Aug 03, 2016 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order of stage variables fails a job
Replies: 4
Views: 2537

Reordering stage variables in a Transformer will not produce a change in the number of Data Sets in the score. Something else has also been changed in the job design, about which you have chosen not to inform us.

Perhaps you could post the two scores?
by ray.wurlod
Tue Aug 02, 2016 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File format issue
Replies: 1
Views: 1091

Get rid of the Final Delimiter property. This asserts that there is an extra delimiter character between the last field and the end of the record, which is not the case in your data.
by ray.wurlod
Tue Aug 02, 2016 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on creating JSON file.
Replies: 5
Views: 5176

Welcome aboard. The short answer is yes.
by ray.wurlod
Tue Aug 02, 2016 4:33 pm
Forum: General
Topic: sharing xmeta repository
Replies: 2
Views: 1211

I thought about that for a while, and can't see any technical reason why not. The only problem I could identify would be simultaneous key generation requests from each system leading to failure to have all keys unique, but probably locking on the semaphore would prevent even that. Of course neither ...