Search found 53125 matches

by ray.wurlod
Tue Oct 13, 2009 1:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to open project 'XYZ' - 81016. ( Job Migrated )
Replies: 13
Views: 6999

How was the actual migration performed?

Code: Select all

SELECT * FROM SYS.MESSAGE WHERE @ID = '081016';
by ray.wurlod
Tue Oct 13, 2009 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Versions 8.0/8.0.1/8.1 Clarifications
Replies: 2
Views: 1172

You and lots of others. As a general rule 8.0 was marketed under the WebSphere brand while 8.1 is marketed under the InfoSphere brand.
by ray.wurlod
Tue Oct 13, 2009 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Error calling DSRunJob" - only on few instances
Replies: 2
Views: 1227

What is the status of instance DFB_UPD_CE_FEEDBACK.PBV ?
by ray.wurlod
Tue Oct 13, 2009 1:37 pm
Forum: General
Topic: How to pass values for Parameter set to Dsjob
Replies: 10
Views: 15228

Option -param=parametersetname=valuesfilename will work. The individual parameter values, in this case, have been pre-stored in the values file.

If you want to override one of these "default" values, the proper syntax is then -param parametersetname.parametername=value
by ray.wurlod
Mon Oct 12, 2009 10:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disable Datastage id using XMETA table
Replies: 0
Views: 1418

That's a DB2 thing. You should be able to use a regular CAST.
by ray.wurlod
Mon Oct 12, 2009 10:17 pm
Forum: General
Topic: Loading a Varbyte field in teradata
Replies: 5
Views: 4285

Interpose a Transformer stage with appropriate data type conversion function.
by ray.wurlod
Mon Oct 12, 2009 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Log file extraction from UNIX / Admin
Replies: 8
Views: 6237

Where are you trying to do this - interactively or in a server routine? There are some neat tricks in the latter case.

From the operating system command line you can use redirection operator.

From TCL you can use COMO or DIVERT.OUT commands to capture output.
by ray.wurlod
Mon Oct 12, 2009 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Spaces to COMP-3 field in Mainframe
Replies: 4
Views: 1391

Why? Spaces is not valid as COMP-3. Read again the advice above. It can only work if you re-define the field as something that will take spaces, typically PIC X(n).
by ray.wurlod
Mon Oct 12, 2009 2:12 pm
Forum: General
Topic: Operator's runLocally() failed
Replies: 4
Views: 2933

You can specify the location of log and bad files in the stage's properties. Since you haven't, they have probably been written on the scratchdisk of the first-named node on which Oracle software is accessible.
by ray.wurlod
Sun Oct 11, 2009 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting rid of an invisible project
Replies: 17
Views: 9479

Assuming that you are dsadmin when (not) creating the project, verify that dsadmin has all privileges to the XMETA database and all tables therein (at least all those that relate to DataStage).
by ray.wurlod
Sun Oct 11, 2009 10:50 pm
Forum: General
Topic: Operator's runLocally() failed
Replies: 4
Views: 2933

The error has occurred within Oracle bulk loader (sqlldr). You need to inspect its log file (and, possibly, its "bad" file) to see what the actual problem is. Pathnames for these should be mentioned in the job log.
by ray.wurlod
Sun Oct 11, 2009 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: string to decimal conversion
Replies: 21
Views: 8368

What you are describing makes perfect sense, assuming that VAR2 has datatype Decimal(18,2) - you left out the word "Decimal". You are dividing by 100, to produce a decimal number with a scale of 4, but then loading it into a decimal data type with a scale of only 2. Therefore the two least...
by ray.wurlod
Sun Oct 11, 2009 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to improve performance..
Replies: 6
Views: 2444

Before you do or worry about anything else, define "performance" in an ETL context. To my mind, the metric of performance is unlikely to be any kind of rate (particularly not rows per second). The main driver of ETL effort should - nay, must - be the ability to perform extraction and load ...
by ray.wurlod
Sat Oct 10, 2009 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to write to file
Replies: 11
Views: 5637

DSXchange is an all volunteer site whose participants post as and when they can. We don't do "urgent" and find demands for immediate response offensive. DSXchange exists to share knowledge; it is not a substitute for official support. If you need sub-one-hour response from official suppor...
by ray.wurlod
Sat Oct 10, 2009 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to write to file
Replies: 11
Views: 5637

The file system on which /xxx/yyy is mounted is full. All of that information is in the error message.

There is only one cure for full file systems.