Search found 53125 matches

by ray.wurlod
Tue Apr 22, 2008 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server name and project name in email subject line
Replies: 12
Views: 5480

Welcome aboard. We are not talking about the Command stage here; we're talking about the Execute Command activity in a job sequence.
by ray.wurlod
Tue Apr 22, 2008 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: <file> already in your VOC file as file definition rec
Replies: 1
Views: 1889

Check the "delete file before create" check box.

To get everything back in sync if necessary, execute a command such as

Code: Select all

DELETE FROM VOC WHERE @ID = '<<hashedfilename>>';
by ray.wurlod
Tue Apr 22, 2008 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creation of Datastage Exit code to be picked up in a ksh
Replies: 2
Views: 4328

You can not do this. DataStage has its own set of exit (status) codes. 1 = finshed OK, 2 = finished with warnings, 3 = failed, 21 = has been reset, and so on. You will need to write your result, if you want something else, to some kind of persistent storage. If the -jobstatus option is used, then th...
by ray.wurlod
Tue Apr 22, 2008 3:18 pm
Forum: General
Topic: SAPBW Load PACK and its performance.
Replies: 6
Views: 1798

No matter what you do, the same volume of data needs to be transmitted across your network. Perhaps you could consider compressing your flat files prior to transmission, and uncompressing them afterwards.
by ray.wurlod
Tue Apr 22, 2008 3:16 pm
Forum: IBM QualityStage
Topic: Capabilities of Quality Stage Version 8.0
Replies: 7
Views: 3499

CASS is US-only. Others are available, for example SERP for Canada.
These databases are refreshed. I don't currently have information about the interval; your vendor could provide that.
by ray.wurlod
Tue Apr 22, 2008 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substraction of month from the date
Replies: 8
Views: 2837

Create a "time" table with daily granularity. You'll appreciate having it.
by ray.wurlod
Tue Apr 22, 2008 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Sequence LOOP aborts after 256 iterations.
Replies: 4
Views: 5688

Could it be, perhaps, that the string returned by the ls command is too long?
by ray.wurlod
Tue Apr 22, 2008 3:43 am
Forum: General
Topic: Standalone Routine to send mail !
Replies: 3
Views: 1167

What do you mean by "standalone"?

DataStage routines execute only in the DataStage environment. Ultimately they must be invoked from a DataStage job. Even the Test grid writes a small job "on the fly" to invoke the routine under test.
by ray.wurlod
Tue Apr 22, 2008 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Log file
Replies: 3
Views: 1122

Do you want to use a job, a command or a routine to dump the log table contents into a text file? Search the forum for techniques. There are many. You can even count the warnings in a specific time range without dumping the contents to a text file, using the DataStage API function DSGetLogSummary (o...
by ray.wurlod
Tue Apr 22, 2008 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding Start_time and End_time of Job in Parallel Job
Replies: 3
Views: 881

Press F1 when you're in the Designer or Manager client, and use the index to find DSGetJobInfo().

Or why not download EtlStats from Kim Duke's web site which will do all this data gathering, and put the results into a table, for you?
by ray.wurlod
Tue Apr 22, 2008 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter Condition in sequential file
Replies: 15
Views: 5122

It IS the right one.

The -u option for the sort command means "unique" - it returns unique values of the sort keys.

Therefore, if it is not giving you the answer you require, then you are not specifying the sort command appropriately.
by ray.wurlod
Tue Apr 22, 2008 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error
Replies: 3
Views: 928

Don't you believe in Search?

It's not like you're a newbie here - you have more than 100 posts.

That very question has been answered twice in the last two days.
:roll:
by ray.wurlod
Tue Apr 22, 2008 1:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Parallel Transporter (TPT) in DataStage 8?
Replies: 7
Views: 7528

Don't push! It's the middle of the night in the USA. If someone knows an answer they'll post something. When they're awake.
by ray.wurlod
Tue Apr 22, 2008 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Datastage Job Log information
Replies: 3
Views: 1428

No. of rows processed is captured automatically, and is logged in the "active stage finishing" event in the job log, is viewable using the monitor, and can be captured with DataStage API functions (which includes the dsjob command line interface). No. of rows affected is something you'll need to ask...
by ray.wurlod
Tue Apr 22, 2008 1:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: GCI link initialization
Replies: 1
Views: 1434

Please post the exact error message. More to the point, read all of the information contained in the error message. Then check thoroughly the properties of this link, particularly the file name property, and check that you have all the requisite permissions and the like for that particular file. Wit...