Search found 53125 matches

by ray.wurlod
Fri Dec 10, 2004 2:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Jobs not visible with Operator level access
Replies: 3
Views: 1236

Create yet another group (pstest?) and chgrp everything in the test project such that they are associated with this group. Only add to the new group those users whom you wish to be able to see DataStage objects in the test project. Ideally there should be no need for anyone to be able to see them. I...
by ray.wurlod
Fri Dec 10, 2004 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting a TimeStamp Value into Oracle Database
Replies: 4
Views: 1241

DataStage can "recognize" any date format, because it does not have any data types - everything is a character string.

It's the database servers and/or their client software (such as ODBC drivers) that grumble about date formats - not DataStage!
by ray.wurlod
Fri Dec 10, 2004 1:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage repository behind the scenes.
Replies: 2
Views: 1238

You may "need to know" (why?), but Ascential elects not to publish this information and reserves the right to change it at any time. In quick summary it's not file-based, it's database-based. It's definitely NOT DB2; Ascential explicitly markets itself as "database agnostic". To that end, currently,...
by ray.wurlod
Thu Dec 09, 2004 11:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSLinkInfo and Performance Statistics
Replies: 6
Views: 1841

These statistics relate to active stages. More information is available through DSGetStageInfo in version 7 than in (your) version 5, for example DSJ.STAGESTARTTIMESTAMP, DSJ.STAGEENDTIMESTAMP and DSJ.STAGECPU. You don't really want to know about how to extract them from the Repository tables, since...
by ray.wurlod
Thu Dec 09, 2004 11:11 pm
Forum: Site/Forum
Topic: Operating System
Replies: 0
Views: 1560

Operating System

When creating a new post, the poster is prompted for "OS" to choose either UNIX or Windows.

Lately it has become clear that some have understood this to mean their client machine.

Perhaps a better prompt (and display label in the forum itself) would be "Server OS:".
by ray.wurlod
Thu Dec 09, 2004 10:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning
Replies: 3
Views: 1788

One word. Micro$oft.
by ray.wurlod
Thu Dec 09, 2004 10:46 pm
Forum: Enhancement Wish List
Topic: Cancel button on Data Browser
Replies: 1
Views: 1503

Cancel button on Data Browser

It would be so nice to be able to cancel the "query from hell"!
by ray.wurlod
Thu Dec 09, 2004 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc.ini
Replies: 5
Views: 2461

You specified that your server is on Windows, so I gave a Windows answer.

On UNIX, the odbc.ini file is accessed most easily through .odbc.ini in the $DSHOME directory. This may be a true file or may be a symbolic link. Doesn't matter, you can edit it in either case.
by ray.wurlod
Thu Dec 09, 2004 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning
Replies: 3
Views: 1788

It's a warning rather than an error, and it's generated by the ODBC driver rather than by the database server. It means that, somewhere, a decimal value has been truncated. The apparent culprit is Dollar_Amount. The CURRENCY data type in SQL Server expects four decimal places; you have only supplied...
by ray.wurlod
Thu Dec 09, 2004 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc.ini
Replies: 5
Views: 2461

Control Panel > Administrative Tools > Data Sources (ODBC)

Make sure you specify System or File data sources, not User data source.
by ray.wurlod
Thu Dec 09, 2004 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Lookups on a Load Job
Replies: 2
Views: 638

Is your load rule "insert or update" and does the target table have a primary key defined? Chances are that the first 9 rows are inserted, then the next 9 rows "update" (by overwriting). After all, you only have nine key values.
by ray.wurlod
Thu Dec 09, 2004 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to compile jobs thru unix commands and which one to use.
Replies: 6
Views: 2130

Even the routine requires knowledge about the internal architecture of DataStage that is not in the public domain.

The safer answer is a plain NO.

There are some job compilation utilities available, including the multi-job compile that now ships with DataStage.
by ray.wurlod
Thu Dec 09, 2004 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning When i run a simple job
Replies: 2
Views: 917

Do you have "first line is column names" set and, if so, are the column names too large for your defined column widths?
by ray.wurlod
Thu Dec 09, 2004 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: QS plug-in in DS
Replies: 1
Views: 628

No.

Run the job from Quality Stage Designer. You will get the same overflow blocks. It's a deficiency in your blocking or matching strategy.
by ray.wurlod
Thu Dec 09, 2004 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time slicing of parallel jobs
Replies: 1
Views: 951

No.

Parallel means parallel. They run simultaneously.

You can do what you want by creating multi-instance server jobs, and controlling those through a job sequence.