Search found 53125 matches

by ray.wurlod
Fri Oct 12, 2007 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: about data stage
Replies: 10
Views: 2575

You have (correctly) created a new post for this question. Therefore there is no need to ask it here.
by ray.wurlod
Fri Oct 12, 2007 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to load mainfram source
Replies: 1
Views: 694

Please delete the duplicate post before someone answers it. Do you have to fetch this mainframe file from the mainframe, or is it "pushed" to your DataStage server from the mainframe? Do you have a COBOL file definition for the mainframe file? If not, where are you getting its metadata (table defini...
by ray.wurlod
Fri Oct 12, 2007 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: about db2 database
Replies: 1
Views: 689

There's a lot you have to do. There's even a whole manual about it, which you can get your support provider to supply. You could, in the meantime, Search this forum.
by ray.wurlod
Fri Oct 12, 2007 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email Notification junk attachments
Replies: 3
Views: 1144

This is nothing to do with DataStage. It is the way that some SMTP clients work.
by ray.wurlod
Fri Oct 12, 2007 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hi all
Replies: 5
Views: 1450

I have translated your subject into Southern US English ("hey y'all") but it doesn't mean any more as a result. Please choose meaningful subject lines so as to aid future searchers.
by ray.wurlod
Fri Oct 12, 2007 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Current time stamp
Replies: 1
Views: 730

Search the manuals and online help for the term "date format string".
by ray.wurlod
Thu Oct 11, 2007 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort String
Replies: 18
Views: 3792

f(kN), where k is some constant and N is the number of items in the delimited list. That is, time taken is a linear function of number of items, for sufficiently small items (such as city names). Remember that this function is sorting a delimited list of city names for each record processed - it is ...
by ray.wurlod
Thu Oct 11, 2007 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Case Statement
Replies: 2
Views: 1251

Why can't you use Switch stage?
Can you use Filter stage?
by ray.wurlod
Thu Oct 11, 2007 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Add days to a date
Replies: 3
Views: 2274

There's no single function. But you could build an expression that converts the date to the number of days since a given date, adds to that, then converts back to a date. Functions involved are:
DaysFromDateSince()
DateFromDaysSince()
by ray.wurlod
Thu Oct 11, 2007 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Making an ODBC connection to a db2 database
Replies: 3
Views: 1938

There is a PDF document available from your support provider that goes deeply into the intricacies of setting up DB2 access for DataStage. I suggest that you ask for it. It answers all your questions.
by ray.wurlod
Thu Oct 11, 2007 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: default node pool must be empty
Replies: 3
Views: 1393

Code: Select all

pools "" "node1" "node1s" 


You need to include "" as the default node pool name.
by ray.wurlod
Thu Oct 11, 2007 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with NLS map in sequential stage
Replies: 3
Views: 1312

I don't believe that the NLS map property can be a job parameter.
by ray.wurlod
Thu Oct 11, 2007 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View Data in ODBC Stage for Teradata
Replies: 5
Views: 2002

No, but they are completely different data browsers - the server one is written in BASIC, the parallel one uses osh.
by ray.wurlod
Thu Oct 11, 2007 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to count variable lenght record with column type binary
Replies: 3
Views: 1236

Welcome aboard. Why do you want to do this? The Len() function will return the number of characters in a string, which will be the same as the number of bytes if you are using a single-byte character set. Simply (temporarily if necessary) convert the binary to a string data type first. If you have N...
by ray.wurlod
Thu Oct 11, 2007 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating a end date timestamp
Replies: 2
Views: 1032

Easiest would be a server job (called from the job sequence at the end) to perform this task. It could interrogate the system clock directly (via the Date() and Time() functions for example) rather than selecting sysdate from dual.