Search found 15603 matches

by ArndW
Mon Jun 13, 2005 6:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Mgmt.
Replies: 14
Views: 5729

Hi, You can do that in Datastage Manager. It is given in the Datastage Documentation that,we cannot use Unix cp or rm commands to copy or delete a dataset becuse,Datastage represents a single data set with multiple files.Using rm simply removes the descriptor file,leaving the much larger files behi...
by ArndW
Mon Jun 13, 2005 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: German Character in the files
Replies: 11
Views: 4265

saadmirza - in DS you can explicitly set the output file format in the output CSV file, I guess this is what you are doing as you say you can view the data. What is your input database and what are your NLS settings for that source stage?
by ArndW
Mon Jun 13, 2005 5:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: German Character in the files
Replies: 11
Views: 4265

The file-viewer in Datastage is most likely converting the character to a "?", where are you displaying this from - and if you are using a database utility, make sure that it's display attributes set via the environment variables are set correctly (see if other tables show German characters correctl...
by ArndW
Mon Jun 13, 2005 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: German Character in the files
Replies: 11
Views: 4265

I've got to side with Wolfgang here. The only German character that can conflict (when not using NLS) is the u-umlaut as that maps to either a @VM or @FM (cannot recall which one). If you are doing explicit mapping from one character set to another then the most likely error you are going to get is ...
by ArndW
Mon Jun 13, 2005 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic table loading
Replies: 8
Views: 1761

Wolfgang - great approach for Server! That's like Christmas, I will give that a try later on. {rubbing hands together in anticipation}
by ArndW
Mon Jun 13, 2005 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic table loading
Replies: 8
Views: 1761

Jusami25, Unfortunately this is not possible in Server, and in Px it is possible to use implicit columns but perhaps not to the extent that you wish. Since an ETL process usually processes columns in addition to reading/writing them this type of job design is not too common. Are you reading and writ...
by ArndW
Fri Jun 10, 2005 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need answer
Replies: 7
Views: 1909

Craig - I see what you mean about question number two, I just looked at the question (along with the others) from another angle. At first I thought I would be tongue-in-cheek (hash files are, from time to time, refreshed by the blood of overworked consultants) but then decided a terse answer would s...
by ArndW
Fri Jun 10, 2005 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need answer
Replies: 7
Views: 1909

Hello Rajima, (1) .how to refresh the hased files? Since your DataStage jobs read from and write to Hashed files you take care of refreshing their contents yourself. They are no different in that aspect than other database tables. (2) which will execute first routine or transform? Neither - you have...
by ArndW
Fri Jun 10, 2005 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Row count for all hash files in a category
Replies: 16
Views: 4309

Andal,

if you have a list of files then you can use the loop construct within a sequence job and iterate through the list call up your counting job for each Hash file object.
by ArndW
Fri Jun 10, 2005 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Row count for all hash files in a category
Replies: 16
Views: 4309

Hello Andal,

there probably is, but you need to add the selection of the category to your query. How do you differentiate your "Categories"? Is it by location? By file name?
by ArndW
Thu Jun 09, 2005 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What's new in v7.5.1 document?
Replies: 1
Views: 809

PilotBaha - I just installed the 7.5.1 upgrade 30 minutes ago and still have the CD in the drive here at work. Fire off a private message with your e-mail address and consider the document on it's way.
by ArndW
Thu Jun 09, 2005 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Coverting a Julian date into normal date format
Replies: 6
Views: 3038

Perwez, There are so many formats out there that say they are a "Julian Date". A common one is the number of days since Noon (12:00), 4713 January 1 B.C. The DataStage server form of the Julian Date is an integer number stating the number of days since 1967-12-31. So the first thing that you need to...
by ArndW
Thu Jun 09, 2005 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Stage Problem.
Replies: 3
Views: 1633

It looks like the table (UniVerse file) is declared differently in each environment. Use the Manager to read in the column descriptions in both environment and compare them.
by ArndW
Thu Jun 09, 2005 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Coverting a Julian date into normal date format
Replies: 6
Views: 3038

Perwez, in DataStage server there are 2 commonly used conversion functions, ICONV() and OCONV() (input- and output conver respectively). If you do a search on either of these along with the keyword "date" you will get many, many threads that address your question. And if you add the term "julian" yo...
by ArndW
Thu Jun 09, 2005 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spawning of processes in a DSEE environment
Replies: 1
Views: 1067

Sathyanveshi, the only thing controlling on which CPUs processes get executed on is the OS - DataStage has no control on where a specific orchestrate pid gets thrown. So in your case with a 4-node configuration file and 8 cpus you cannot assume that a node will go to 2 cpus. But nonetheless the proc...