Search found 53125 matches

by ray.wurlod
Tue Apr 01, 2008 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Error
Replies: 4
Views: 2025

You could always change your expectations.

Or you could address the issue of the Pivot stage's library, rather than ignoring it.
by ray.wurlod
Tue Apr 01, 2008 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading fixed width files
Replies: 2
Views: 901

Read with a Sequential File stage, that has metadata suited to the detail lines and that has a reject output. The header, since it does not conform to the width of a detail line, will pass onto the reject link, where you can re-parse it with a Column Input stage.
by ray.wurlod
Tue Apr 01, 2008 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Defined Environment variables
Replies: 10
Views: 2655

What has that got to do with user-defined environment variables?!!
:roll:
by ray.wurlod
Tue Apr 01, 2008 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log error in the sequence with exact error name
Replies: 6
Views: 1380

The message "Unable to open OUTPUT#/Inventory/BALANCESDS.20080401094424.dat: No such file or directory. " suggests that you have omitted one of the surrounding "#" characters from the job parameter reference OUTPUT.
by ray.wurlod
Tue Apr 01, 2008 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Last backup dates
Replies: 7
Views: 1760

Whoever took the backup should have labelled the media and, ideally, made an entry in a system administration record.
by ray.wurlod
Tue Apr 01, 2008 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading Taiwanese data into SAP R/3
Replies: 3
Views: 1718

Yes, BIG5 is the "traditional Chinese characters" NLS map on UNIX.

NLS map can be a job parameter - you will need to be aware of how the other data are encoded in order to make intelligent choices.
by ray.wurlod
Tue Apr 01, 2008 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete specific records from hashfile / hashed-file
Replies: 18
Views: 7041

You do not reclaim space through DELETE operations. Free space is preserved in hashed files against the likelihood that it will be needed again in the future.

The only command that can reclaim space (apart from deleting and re-creating the hashed file) is RESIZE.
by ray.wurlod
Tue Apr 01, 2008 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connection to LDAP
Replies: 9
Views: 3113

What do you mean by "connect"? DataStage is reasonably at home with most operating system technologies, the site where I am currently working use LDAP for enterprise-wide authentication. But I am not sure what you are asking.
by ray.wurlod
Tue Apr 01, 2008 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parsing of the record
Replies: 4
Views: 1011

To clarify, you want to pivot rows into columns? Is that correct? The technique is called "vertical pivoting", and a search of the forum for that term will reveal a number of ways that it can be done with DataStage.
by ray.wurlod
Tue Apr 01, 2008 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete specific records from hashfile / hashed-file
Replies: 18
Views: 7041

The data source name needs to be localuv which is pre-defined in your uvodbc.config file. User name and password will be disabled, because localuv is a pre-established connection to the DataStage project itself.
by ray.wurlod
Tue Apr 01, 2008 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read data properly from csv file
Replies: 1
Views: 975

Check very carefully the Format properties, including the individual Field Width properties.
by ray.wurlod
Tue Apr 01, 2008 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

That leaves questions 2 and 3 to be answered.
by ray.wurlod
Tue Apr 01, 2008 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR.ADMIN: Unable to find the new project template location
Replies: 1
Views: 1075

There should also be a file called Template.ini (at the same level as DSEngine and Template). This file specifies the location of the template. Example: cat Template.ini [Project] Location=/app/Ascential/DataStage/Template/ FreeDiskSpace=0 Check that this file is present on your system and contains ...
by ray.wurlod
Tue Apr 01, 2008 4:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage-SQLSTATE=S1000, DBMS.CODE=950088
Replies: 14
Views: 7143

You are very unclear about what has happened, what is happening and what will happen. Please answer the following questions. 1. Is the hashed file still created? If so, what is the name of that hashed file? 2. Is there a VOC pointer to it in the project (either because the hashed file was created in...
by ray.wurlod
Tue Apr 01, 2008 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete specific records from hashfile / hashed-file
Replies: 18
Views: 7041

Use a UV stage with user-defined SQL containing a DELETE statement such as

Code: Select all

DELETE FROM tablename WHERE key = ?
Provide the key value from your text file.

If the hashed file has been created in a directory you will need a VOC pointer to it. Search the forum for the SETFILE command.