Search found 15603 matches

by ArndW
Fri Nov 11, 2005 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Unix or Wondows?
Replies: 6
Views: 1500

Dillipande, this subject doesn't belong in the FAQ forum. Although some people (who I won't name although their handle is chulett) think that Windows are a "toy", the question isn't really answerable without knowing the context of your environment. It's like asking "Is it better to have a Lotus or a...
by ArndW
Fri Nov 11, 2005 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSDesign.exe - Application error
Replies: 5
Views: 2974

Harithay,

I haven't had this problem, but I have seen posts from others who have. It seems that there is a patch for this from IBM/Ascential. If you do a search you'll find the other threads on this subject.
by ArndW
Fri Nov 11, 2005 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling a job in a SEQUENCER which is saved under the folder
Replies: 9
Views: 1533

Could it be that you opened up the designer sequence object before the jobs were placed in the subfolder (I've done that before and ended up re-indexing the project and complaining before realizing that all I needed to do was a "refresh")
by ArndW
Fri Nov 11, 2005 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in reading EBCDIC data from a PX SEQ File stage
Replies: 3
Views: 1260

pandeypk, the list shows what the data types are, but don't necessarily show what the file format is. You will need to take a look at the file to see if the length is fixed and if there are any column separators. The same applies for the column contents - if the generating program on the /370 is a C...
by ArndW
Fri Nov 11, 2005 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uv command to create ds project
Replies: 27
Views: 11697

c_wf, the entry for a DataStage project in the UV.ACCOUNT file requires one additional field to be entered, the "NAME" column needs to have a string with a certain syntax in it. The values depend upon your version and license - you can use a SQL select or a DS "LIST" command to to show the values fo...
by ArndW
Fri Nov 11, 2005 2:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataType Conversion
Replies: 2
Views: 1051

The functions are the correct ones for that transformation. What did you try and what were your problems?
by ArndW
Thu Nov 10, 2005 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport - Not all objects in dsx
Replies: 2
Views: 938

Sure, we've got lots of ideas, if you phrase the question that way 8)

By default read-only objects are omitted.

What objects are you missing that you expect to be in the .dsx export file? You've got to give us at least a tidbit of additional information here...
by ArndW
Thu Nov 10, 2005 2:18 pm
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20404

The original keyboard players from back when "Moog" was the only game in town were all hardcore soldering-gun wielding chip and A/D inteface programmers!
by ArndW
Thu Nov 10, 2005 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: impect of Buffer size and Timeout on a job
Replies: 9
Views: 2710

Singhald,

why didn't you ask along these lines in the beginning? Fortunately, there are now 35 distinct threads on this subject that doing a search for "timeout waiting for mutex " will retrieve.
by ArndW
Thu Nov 10, 2005 11:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tracing from a log directory back to the job
Replies: 2
Views: 731

The DS_JOBS file/table has that information - it links a job name with it's corresponding job number.
by ArndW
Thu Nov 10, 2005 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can i delete all categories with out deleting project
Replies: 1
Views: 524

I go into the manager, click on the category I no longer require and then hit the "delete" key. It might ask me if I really want to do this, but it works every time.
by ArndW
Thu Nov 10, 2005 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The job has to abort after 5 rows enter into the table.
Replies: 8
Views: 2573

50 rows being written down a link to a table - easy; just put the constraint value into the transformer 50 rows total in table - tougher; you need to get the count of rows first to see how many you can put it. If several jobs concurrently write to that table it is more difficult - you could put a SE...
by ArndW
Thu Nov 10, 2005 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: impect of Buffer size and Timeout on a job
Replies: 9
Views: 2710

Singhald, you might not be using explicit IPC stages, but by specifying inter-process buffering you are effectively making all of your active stages into separate process that communicate with the other stages via named pipes - so you are ending up doing IPC. A pipe between processes can be visualiz...
by ArndW
Thu Nov 10, 2005 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp
Replies: 11
Views: 2444

You already posted the format you thought it was in, but I asked what the data for this column actually contains. If it contains any format except YYYY-MM-DD in your varchar (even extraneous spaces count against you) then you are going to get an error.
by ArndW
Thu Nov 10, 2005 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you make the job in runnable state after aborts
Replies: 7
Views: 1310

One of the options in a sequence lets you reset a job before running. This is exactly what you need. You can also trigger this through a dsjob -run -reset call from the command line if you prefer that approach.