Search found 53125 matches

by ray.wurlod
Thu Mar 17, 2011 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Delete Operation in ODBC Stage
Replies: 12
Views: 4390

It may be the case that the total memory demanded by the single process running the combined operators was excessive, and disabling operator combination means more processes but less per-process memory demand.
by ray.wurlod
Thu Mar 17, 2011 3:49 pm
Forum: General
Topic: Connecting to Sql server 2008 from Server routine
Replies: 24
Views: 12484

I would use BCI functions.
ErrCode = SQLAllocEnv(hEnv)
ErrCode = SQLAllocConnect(hEnv,hDBC)
ErrCode = SQLSetConnectOptions(...) ; * as required
ErrCode = SQLConnect(hDBC,DSN,username,password)
etc.

Search DSXchange for examples about how to use BCI functions.
by ray.wurlod
Thu Mar 17, 2011 3:46 pm
Forum: General
Topic: Configuring a new project in V8.0.1
Replies: 11
Views: 3764

If you can't ping the problem is in your network. Have your network administrator advise on subnet mask, bridge or whatever other method is desirable for making your server machine visible from your client machine.
by ray.wurlod
Thu Mar 17, 2011 3:45 pm
Forum: Enhancement Wish List
Topic: Add buttons for Tools -> Run Designer, Run Manager, ...
Replies: 2
Views: 8074

As noted, these are already menu options. For example if you have Designer connected, you can use the Tools menu to Run Director, and vice versa.
by ray.wurlod
Thu Mar 17, 2011 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert the Hexa decilmal file into txt formet
Replies: 20
Views: 7447

No, because there aren't any. You're probably better off using a Sequential File stage (possibly with a fixed record size).
by ray.wurlod
Thu Mar 17, 2011 1:57 am
Forum: General
Topic: Why we are using Control M
Replies: 3
Views: 1615

I give up, why?
by ray.wurlod
Thu Mar 17, 2011 1:55 am
Forum: General
Topic: Configuring a new project in V8.0.1
Replies: 11
Views: 3764

Try it with the name of the server, rather than the IP address. Make sure (with ping, perhaps) that the hostname can be resolved.
by ray.wurlod
Wed Mar 16, 2011 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error code 139
Replies: 1
Views: 1665

Is the job or the sequence aborting with this code? If you reset the job, do you get any extra diagnostic information in its log "from previous run"?
by ray.wurlod
Wed Mar 16, 2011 11:42 pm
Forum: General
Topic: Connecting to Sql server 2008 from Server routine
Replies: 24
Views: 12484

Not sure what DATABASENAME is in your context. Is it an ODBC data source name?

Search DSXchange for examples of how to use BCI functions to execute SQL over an ODBC connection.
by ray.wurlod
Wed Mar 16, 2011 7:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: validate YYYYMMDD and HHMMSS
Replies: 11
Views: 5209

For 8.0.1 (at least according to the manual) and therefore, presumably, for 8.1.
Parallel Job Developer's Guide (8.0) wrote:result (int8) = IsValid(type (string) [, format (string)])
(page 601)
by ray.wurlod
Wed Mar 16, 2011 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checking for Finished/Restartable status in a routine
Replies: 4
Views: 3661

I wouldn't worry about them changing the constants. The whole point of using these mnemonic constants rather than numeric values is so that they can change the numeric values yet maintain backwards compatibility. Since version 1.0 none has been changed, though many have been added.
by ray.wurlod
Wed Mar 16, 2011 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector error
Replies: 8
Views: 6996

... sometimes referred to as the Teradata Utilities Foundation (TUF). Check your DataStage manuals (Connectivity Guide for Teradata) for current naming.
by ray.wurlod
Wed Mar 16, 2011 7:35 pm
Forum: General
Topic: DataStage 7.5 - Restrict access to particular user
Replies: 20
Views: 10245

That's exactly what you required, isn't it? This user should nonetheless be able to login using Director client. In version 8.0 and later there's a new role called Super Operator, that can use Designer to have read-only access to job designs. But this rule is not available in earlier versions than 8...
by ray.wurlod
Wed Mar 16, 2011 4:11 pm
Forum: General
Topic: DataStage 7.5 - Restrict access to particular user
Replies: 20
Views: 10245

Does the dstage group have Developer role in the project? If so, adding this user to that group would defeat your objective. You need to add this user or group to the DataStage roles using Adminstrator client. You may also need to ensure that all users have read access (and "x" to director...