Search found 15603 matches

by ArndW
Mon Sep 29, 2008 8:55 am
Forum: General
Topic: Migrating DataStage resources...a sort of poll
Replies: 20
Views: 6344

Ernie, a bit of both. Using .dsx's with compiled code will work only if the two environments are absolutely identical, i.e. all relevant paths to executables, projects, libraries, system components, DB components, etc. Since this is not always the case, I tend to prefer non-executable deployments wi...
by ArndW
Mon Sep 29, 2008 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleted project
Replies: 2
Views: 656

That means somebody deleted the project from UNIX and not from the Administrator. Create a new dummy project from the Administrator, then copy the complete contents in Windows from the new project into the MyProject directory and then proceed to immediately delete both projects.
by ArndW
Mon Sep 29, 2008 3:27 am
Forum: General
Topic: (40503) A call to an OLE server has failed, or a runtime err
Replies: 5
Views: 9604

Has this suddenly started happening on your workstation and things were working before? If so, perhaps your PC has been automatically updated by system software and libraries have been overwritten. Try re-installing the clients - assuming you've already re-booted and seen if the problem still occurs.
by ArndW
Sun Sep 28, 2008 2:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find all sequential and hashed files with 'Append' mode
Replies: 2
Views: 920

Create a simple job that writes to a sequential file, then make a copy of it changing only the append mode. Export both into .dsx files and compare the two. Now you know which setting to look for. Export your whole project into a .dsx and search.
by ArndW
Sun Sep 28, 2008 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invisible job in v8
Replies: 2
Views: 932

With Version 8 there now 2 places where this metadata is stored, once inside the "old" DS Engine and the other is in the "new" repository. I haven't yet played around with the new repository side in order to be able to state what you need to do in order to clean up, though. You can try to use the DS...
by ArndW
Sat Sep 27, 2008 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to save the job
Replies: 7
Views: 1786

That means something has changed. Either on the server, or perhaps an automatic update on your workstation. Have you checked the Information Server status with your administrator - either locks on your user or perhaps even a redefintion of your user's access rights might be causing this.
by ArndW
Sat Sep 27, 2008 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to save the job
Replies: 7
Views: 1786

I'm afraid I don't understand - you created test jobs but couldn't create a new job? How does that work?
by ArndW
Sat Sep 27, 2008 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to save the job
Replies: 7
Views: 1786

That is a repository error message. Does everyone have similar problems, or just your user or even your particular workplace? Is this a new error (i.e. have you saved jobs before as this user on this install)? Have the administrator go and check in the information server for sessions that might stil...
by ArndW
Sat Sep 27, 2008 4:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special character Handling
Replies: 4
Views: 6853

Approach the problem step-by-step, as Wolfgang has suggested. What is your source character set? What character set would you like as your target?
by ArndW
Thu Sep 25, 2008 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading asterisks instead of timestamp
Replies: 8
Views: 2120

right-mouse-click on the column, then "edit row" and check to see if all attributes listed are identical in both columns. Basically DataStage is seeing a difference in formatting or datatype between CREATED and LAST_UPD which is causing *s to be displayed. What if you were to delete "CREATED" in the...
by ArndW
Thu Sep 25, 2008 8:33 am
Forum: General
Topic: Record Delimiter
Replies: 6
Views: 2236

The record delimiter field in the sequential file window only allows the input of the 2 default values, nothing or 1-character so in this particular instance you cannot use the 0x1E type of representation. This should be noted as a bug, in my opinion. Wasn't there a Windows keyboard shortcut to crea...
by ArndW
Thu Sep 25, 2008 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mgration from 5.22 to 7.5.2
Replies: 19
Views: 8247

It sounds like you know more than I do; I haven't heard of the "X Migrator" and don't know what it will do. Perhaps someone else will chime in here and explain that to both of us.
by ArndW
Thu Sep 25, 2008 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: records getting rejected when inserting in to oracle stage
Replies: 1
Views: 691

Add a reject link and examine the SQL codes that are added to the output stream on rejects in order to determine why these records are being rejected.
by ArndW
Thu Sep 25, 2008 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mgration from 5.22 to 7.5.2
Replies: 19
Views: 8247

Yes, you can migrate directly. Many such migrations will go without a hitch, but sometimes you might encounter issues. Is it a complex implementation and are there a lot of "special" programs or code? I can't recall if one was still allowed to change parameter values inside jobs at V5, but if yes an...
by ArndW
Thu Sep 25, 2008 4:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to convert date type(2008-03-12) to date type(12-MAR-08)
Replies: 6
Views: 2135

You need to convert it into internal format first, using ICONV(In.Column,"D4YMD") and then you convert it back into display format using something like OCONV(InternalDate,"D2DMY[2,3,2]")