Search found 53125 matches

by ray.wurlod
Wed Dec 17, 2003 12:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file status
Replies: 1
Views: 1047

(1) Your code takes the THEN path in the OPEN statement if the file is opened successfuly. Open "filename" To filevariable On Error ' statements to process fatal (OS?) error ' STATUS() supplies error code End Then ' file opened successfully End Else ' statements to process ...
by ray.wurlod
Wed Dec 17, 2003 12:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple rows from single column input
Replies: 10
Views: 2790

Except that, being on Windoze, you'll need embedded <CR><LF>.
by ray.wurlod
Wed Dec 17, 2003 12:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 6.2 --> 5.2 need help for export
Replies: 4
Views: 1239

Theoretically you could remove everything specific to 6.x from the DSX file and - as needed - change revision numbers of components and the ToolsVersion designator and it would work. But there is no documentation about what you would need to take out; you could put the hours in studying the same exp...
by ray.wurlod
Tue Dec 16, 2003 11:53 pm
Forum:
Topic: Using transformer stage, reloading metadata
Replies: 5
Views: 2141

Not in version 6.x. Right mouse click can copy/paste in many locations, but not Columns grids. You can always use Save (into the Repository) and Load.
There's more copy/paste functionality in version 7.x, though still not Columns grids.
by ray.wurlod
Tue Dec 16, 2003 11:50 pm
Forum: Data Quality Best Practices
Topic: Operations in Integrity
Replies: 5
Views: 2643

I've been at it over 30 years. Have learned patience. There's always more to learn. Rate of learning is finite. May I quote Confucious on the secret of all this? If one learns from others but does not think one will be bewildered. If one thinks but does not learn one will be in peril. I try to make ...
by ray.wurlod
Tue Dec 16, 2003 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server Performance with DataStage on AIX
Replies: 5
Views: 1781

If Microsoft had wanted you to use SQL Server on UNIX it would have created a version for UNIX.
by ray.wurlod
Tue Dec 16, 2003 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AS400 Connectivity
Replies: 10
Views: 1826

The filters are set in the ODBC driver setup screen. Last time I played with this (some years back, and on Windows) it had 25 tabs! I believe it's been cleaned up a bit since. Anyway, when you're adding (or configuring) the ODBC data source, once you've chosen the DB2 driver, this is the utility tha...
by ray.wurlod
Tue Dec 16, 2003 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Validation
Replies: 5
Views: 1859

StringToDate would happily convert something like "112019741" even though it have an extra digit. That's because November 20, 19741 is a valid date (if somewhat in the future!). Basically you have to look at the month, which must be between '01' and '12', the day, which must be between '01' and 'nn...
by ray.wurlod
Tue Dec 16, 2003 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple rows from single column input
Replies: 10
Views: 2790

Sounds like the first skill you need to acquire is the skill of specifying a requirement with sufficient detail that you can actually be helped! Examples are good - just look at Michael's responses. You could, of course, hire experienced consultants to perform these tasks the first time. Most of the...
by ray.wurlod
Tue Dec 16, 2003 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one 12 columns in rows (not for all the data file)
Replies: 2
Views: 882

That one would requre a certain extra, you need to preserve the values from the first line in the file, discard the second line, and process the remainder. The first line can be preserved in a stage variable. Its derivation would be of the form IF @INROWNUM=1 THEN col1:",":col2:",":col3:",":col4 Els...
by ray.wurlod
Tue Dec 16, 2003 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine Commands
Replies: 2
Views: 1455

Most of them still coincide with UniVerse commands, though there are DataStage extensions. UniVese manuals can be downloaded from an IBM web site DataStage manuals are installed with your DataStage client software, in a folder called Docs. Help (described by DaeWhan Kim) falls into six categories; c...
by ray.wurlod
Tue Dec 16, 2003 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencing containers
Replies: 2
Views: 870

No. It's the links that govern the sequence of operation.
by ray.wurlod
Tue Dec 16, 2003 3:25 pm
Forum: Data Quality Best Practices
Topic: Operations in Integrity
Replies: 5
Views: 2643

There's no generic answer to that. You have particular tasks that you want to perform, maybe adding a sequence and an identifier to a file. You know what each operator does, therefore you can choose the appropriate operator - or series of operators - to perform that task. Then you build these into a...
by ray.wurlod
Tue Dec 16, 2003 4:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of Days in Current Month
Replies: 0
Views: 1253

Number of Days in Current Month

Calculate the first of the following month, subtract one day, generate the day number of that date. FUNCTION DaysInMonth(TheDate) * TheDate is in DataStage internal format extTheDate = Oconv(TheDate, "D-YMD") extTheYear = extTheDate["-",1,1] extTheMonth = extTheDa...
by ray.wurlod
Mon Dec 15, 2003 8:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AS400 Connectivity
Replies: 10
Views: 1826

Part of, or the main reason for gathering information about tables is that, in the OS/400 environment, every file is treated as a table. When you configure your client software, you can apply various filters such that, for example, only file names matching particular patters are accessed. Otherwise ...