Search found 53125 matches

by ray.wurlod
Wed Dec 12, 2007 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling different metadata in runtime for the same table in
Replies: 8
Views: 2007

Please explain how the structure of a table can change between runs. If it is changed manually (for example via ALTER TABLE statements) then there is no way to automatically synchronize your DataStage job. Recall that DataStage job designs are driven by the metadata - not vice versa.
by ray.wurlod
Wed Dec 12, 2007 1:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic prepared Sql using routines
Replies: 4
Views: 1228

Search the forum for "BCI". The DataStage BASIC SQL Client Interface (BCI) is a set of DataStage functions that mimic the ODBC API functions. You can do whatever you like (in an SQL realm) with these.
by ray.wurlod
Wed Dec 12, 2007 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Loder problem
Replies: 5
Views: 4586

What part of "not connected to ORACLE" was unclear?
by ray.wurlod
Wed Dec 12, 2007 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 10
Views: 3554

From memory, LOC0020
by ray.wurlod
Wed Dec 12, 2007 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSHOME on Windows
Replies: 5
Views: 2585

Actually, that's not the case. You could create a small function (exposed by OLE Automation) that read the relevant registry entry and returned the pathname contained therein.

If you're already in DataStage, the System(32) function returns the pathname.
by ray.wurlod
Wed Dec 12, 2007 1:24 am
Forum: General
Topic: How to read multiple txt files into one sequential stage
Replies: 4
Views: 927

In parallel job Sequential File stage you can have multiple File properties for reading specific files, for File Pattern for reading files whose names match a given regular expression.
by ray.wurlod
Wed Dec 12, 2007 1:23 am
Forum: General
Topic: Have anyone out there created a server job to populate a tab
Replies: 6
Views: 1650

U is a common Burmese name. The second person personal pronoun in English is spelled "you". A wat is a Buddhist temple. The interrogative that you possibly intended to use is spelled "what" in English.
by ray.wurlod
Wed Dec 12, 2007 1:21 am
Forum: General
Topic: I want to send a mail after the job with job status?
Replies: 4
Views: 1307

Do you think the email recipient might prefer the email to be in English?
Please use proper English on the DSXchange forum, it is difficult enough for non-English speakers to have to cope with correct English, much less with SMS-style affectations.
by ray.wurlod
Wed Dec 12, 2007 1:19 am
Forum: General
Topic: Save log details of a particular job in file
Replies: 2
Views: 803

Use Print option from Project menu in Director, and choose Print To File check box.
by ray.wurlod
Wed Dec 12, 2007 1:18 am
Forum: General
Topic: Same sequential file as the source and the target
Replies: 10
Views: 3103

Well, of course it COULD be done. But you'd only be doing with DataStage what we've already advised.

Code: Select all

SeqFileA -----> SeqFileB -----> SeqFileA

would work
by ray.wurlod
Wed Dec 12, 2007 1:15 am
Forum:
Topic: Abt metadata
Replies: 4
Views: 1786

No.
by ray.wurlod
Tue Dec 11, 2007 2:14 am
Forum:
Topic: About datastage APIs
Replies: 1
Views: 1073

Welcome aboard.

Basically the answer is no.
by ray.wurlod
Tue Dec 11, 2007 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Date conversion in parallel jobs
Replies: 1
Views: 1515

StringToDate() function applied to the leftmost 11 characters of your string and with an appropriate date format string.

The actual format of the Date data type is irrelevant, but will be displayed according to your project's or job's default date format.
by ray.wurlod
Tue Dec 11, 2007 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple conditions in filter stage
Replies: 9
Views: 5438

You can certainly use job parameters in simple conditions in a Filter stage - I have not checked a compound condition (one with And or Or) but can not imagine there would be any difficulty. However, it can be finicky with quote characters - try using single quotes rather than double quotes, for both...
by ray.wurlod
Tue Dec 11, 2007 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: load single space into the table's field in Oracle(load opt)
Replies: 2
Views: 890

What is the data type of the field? To what value did you set APT_STRING_PADCHAR environment variable?