Search found 53125 matches

by ray.wurlod
Tue Sep 06, 2011 11:08 pm
Forum: General
Topic: Users being automatically being revoked access from projects
Replies: 3
Views: 1566

Never seen it. How are your users authenticated - internal IIS, operating system or LDAP?
by ray.wurlod
Tue Sep 06, 2011 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disk space issue
Replies: 9
Views: 3222

The amount of space occupied by DataStage on the "server" (engine tier) changes hardly at all. The only real increment is in the job logs. As noted in my earlier post, scratchdisk is consumed, but it is consumed temporarily, so anything you could do with a script would have to have the gre...
by ray.wurlod
Tue Sep 06, 2011 10:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disk space issue
Replies: 9
Views: 3222

Why "using script"? And what do you mean by "space"? Space taken for data, space taken for Data Sets, space taken on scratch disk? Do you want to estimate data sizes in text files, in databases, in Data Sets, in File Sets, in memory, what? There are perfectly good utilities withi...
by ray.wurlod
Tue Sep 06, 2011 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Select All records at once?
Replies: 2
Views: 1222

Assuming your database server supports it (which I doubt) you could declare an array size of 600000000.

There's nothing wrong with array size of 2000, it's quite efficient, particularly if the database server handles arrays correctly.
by ray.wurlod
Tue Sep 06, 2011 5:29 am
Forum: General
Topic: CCYYJJJHHMMSS date format
Replies: 4
Views: 1411

You posted the job type as server. That's what I answered. Within a parallel Transformer stage you will need to craft your own mechanism for translating from JJJ to MMDD. It's not really that difficult, but make sure your solution handles leap years. It's possibly worth the effort of encapsulating t...
by ray.wurlod
Tue Sep 06, 2011 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process meta data not available in database
Replies: 1
Views: 2073

Why not review the release notes for Fix Pack 1? They can be found at the IBM Information Center
by ray.wurlod
Tue Sep 06, 2011 5:24 am
Forum: General
Topic: data validation in fixed width sequential file
Replies: 14
Views: 6063

Your OPENSEQ statement failed. You can work out why. Your OPENSEQ statement lacked ON ERROR and ELSE clauses to trap the possibilities. Your CLOSESEQ statement was given a variable that was not a valid file variable (because of the failure of OPENSEQ then because you used a constant) and it was this...
by ray.wurlod
Tue Sep 06, 2011 5:21 am
Forum: General
Topic: Unable to save XML table definition
Replies: 1
Views: 1471

What Information Server product roles do you have? What DataStage project roles do you have?
by ray.wurlod
Tue Sep 06, 2011 5:20 am
Forum: General
Topic: DS_AUDIT not updated
Replies: 8
Views: 3314

The structures and models used in XMETA are deliberately undocumented.
by ray.wurlod
Tue Sep 06, 2011 5:18 am
Forum: General
Topic: CCYYJJJHHMMSS date format
Replies: 4
Views: 1411

CCYY is the same as YYYY (CC indicates "century"). JJJ is the ordinal number of the day in the year, a number between 001 and 366. The conversion is very straightforward. Oconv(Iconv(Left(InLink.TheString,7), "DYJ"), "DYMD[4,2,2]" : @VM : "MCN") If "they&...
by ray.wurlod
Tue Sep 06, 2011 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export to .xls
Replies: 1
Views: 1096

You can create a file with any suffix you please, or even none. Comma-separated values (CSV) is a pure text format, which in fact is the default format for files written by the Sequential File stage. It is not possible to write a file in Microsoft Excel workbook format. On a UNIX machine it would no...
by ray.wurlod
Mon Sep 05, 2011 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage missing out some values
Replies: 4
Views: 1625

You will just have to wait till next time U (one of our posters) logs in.

The second person personal pronoun in English is spelled "you".
by ray.wurlod
Mon Sep 05, 2011 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Entire Partitioning while writing to a oracle database table
Replies: 2
Views: 1070

You're right. You're not. And you can probably verify that it's "first in wins" with the second attempt to insert the same row being rejected by Oracle.
by ray.wurlod
Mon Sep 05, 2011 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify stage error
Replies: 13
Views: 5157

There are no square brackets around the new data type. These are used only to show optional syntax.

Code: Select all

timestamp1:timestamp = timestamp_from_string(timestamp_string)
by ray.wurlod
Mon Sep 05, 2011 5:13 pm
Forum: General
Topic: data validation in fixed width sequential file
Replies: 14
Views: 6063

Please format it properly, with each END on a separate line by itself. It's too hard to tell with what you've given us.

At first glance, though, I'd guess that there's no END for the THEN clause of the OPENSEQ statement.