Search found 6797 matches

by DSguru2B
Wed May 02, 2007 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mv Command
Replies: 3
Views: 795

If you wanted all the files under Text then the following would have worked as well

Code: Select all

mv /Sales/Seq/Text/* /Sales 
by DSguru2B
Wed May 02, 2007 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mv Command
Replies: 3
Views: 795

Does you id have read/write permissions to this particular directory? plust provide fully qualified path to the files. If your in the directory where Text resides, provide the fully qualified path of Sales folder.
by DSguru2B
Wed May 02, 2007 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Server routine in Parallel Job
Replies: 10
Views: 3768

Not a plausible approach. Redesign it so that the contents of a hashed file are now present in a dataset and use a px job to read the dataset. If you could be more clear on what needs to be done, someone here can point you in the right direction.
by DSguru2B
Wed May 02, 2007 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row count from txt file
Replies: 6
Views: 1194

Its good to see you guys do your own detective work rather than waiting for the answer. Keep it up.
by DSguru2B
Wed May 02, 2007 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no file descriptor error
Replies: 5
Views: 3714

I told you they would still miss it :roll:
by DSguru2B
Wed May 02, 2007 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row count from txt file
Replies: 6
Views: 1194

In the filter command of sequential file stage, put wc -l. Specify one column in the metadata. This will get your the row count of the file you specify.
by DSguru2B
Wed May 02, 2007 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp problem
Replies: 3
Views: 1200

Take a minute and review your if then else statement. If the hour and seconds are greater than 23 and 59 respectively, then 00. :?
by DSguru2B
Wed May 02, 2007 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no file descriptor error
Replies: 5
Views: 3714

You must be hitting the 2GB limit imposed by the OS for a file. Either that or your disk ran out of space.
by DSguru2B
Wed May 02, 2007 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom warning
Replies: 5
Views: 1949

Did you make sure all your numeric/Integer/BigInt/SmallInt datatypes in the sequential file contain only numbers and no non-numeric characters?
Stick in a transformer and specify a reject link. Specify the array size to 1. The culprit row will be rejected for you to analyze.
by DSguru2B
Wed May 02, 2007 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job locked
Replies: 18
Views: 6670

In the UV prompt from the unix command line (telnet, putty etc.) or DataStage Administrator.
Also, were the jobs locked by your id? If not then you wont be able to 'free' them. Search for DS.TOOLS in the forum, another way of unlocking the jobs.
by DSguru2B
Wed May 02, 2007 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating UV_USERS - will this work?
Replies: 5
Views: 3412

Now this is a good informational post, not something you see everyday. Thanks for the great info guys. This is definately going in my favorites bucket :D
by DSguru2B
Tue May 01, 2007 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing non-alphanumeric characters using Convert function
Replies: 9
Views: 8635

The Convert() function will work to retain only alphanumeric characters. But for non-printable characters, I think you will have to go the routine route.
by DSguru2B
Tue May 01, 2007 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: idea on implementing process flow (higher level question)
Replies: 7
Views: 1464

So is your scheduler controlling the process by reading return codes or your job sequence is? First of all, the creation of flat files at the end of each extract is redundant, IMHO. As the scheduler can be setup to kick off the 11th job (your main sequence) only after the first 10 finish successfull...
by DSguru2B
Tue May 01, 2007 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing non-alphanumeric characters using Convert function
Replies: 9
Views: 8635

Convert() requires three arguments.
Try something like

Code: Select all

Convert("~!@#$%^&*()_+=-`,./;[]\|}{:?>< ", "", in.Col)

That should be close.