Search found 53125 matches

by ray.wurlod
Tue Mar 15, 2005 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about the back end table structures of ascential datastage
Replies: 3
Views: 1074

Open DataStage Manager client. Find the Documentation Assistant tool in the toolbar (it looks like a typewriter) or in the Tools menu. Opening the tool gives you a dialog where you can select objects to push out into the other database. On the Options tab you can take the default DSN (DSReporting) o...
by ray.wurlod
Tue Mar 15, 2005 1:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Heading
Replies: 2
Views: 610

You don't get a report heading (which you do get in RetrieVe queries) but you do get column headings. To suppress column headings in DataStage/SQL, use the COL.SUP keyword or the SUPPRESS COLUMN HEADING clause. For example: SELECT PRODUCT, QTY FROM EXAMPLE1 SUPPRESS COLUMN HEADING; At the TCL prompt...
by ray.wurlod
Mon Mar 14, 2005 10:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What will IBM DataStage be called?
Replies: 4
Views: 985

Gotta be a TLA. :twisted:
by ray.wurlod
Mon Mar 14, 2005 10:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to retrieve multiple rows using lookup table
Replies: 10
Views: 4109

The ODBC stage type is equipped for multi-row returns from lookups.
Invoke help, and search for Multi.
by ray.wurlod
Mon Mar 14, 2005 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Steps to carry while creating New Project
Replies: 1
Views: 540

To create a new project simply open the Administrator client, select the Projects tab, click Add and follow the prompts. Projects don't have parameters in their own right. You can usually handle parameters by having Templates created in the old project. Also consider Parameter Manager from the good ...
by ray.wurlod
Mon Mar 14, 2005 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: i want to get the summary of a job..
Replies: 15
Views: 4813

You need the following declaration at/near the beginning of your routine, certainly ahead of any executable statement.

Code: Select all

$IFNDEF JOBCONTROL.H
$INCLUDE DSINCLUDE JOBCONTROL.H
$ENDIF
by ray.wurlod
Mon Mar 14, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link partioner and link collector
Replies: 1
Views: 562

You can use as many as you like; though any one link partitioner supports a maximum of 64 outputs. Read the manual about inter process communication, particularly the section about process boundaries. Learn about how many processes are generated in a job design (approximately one per active stage, b...
by ray.wurlod
Mon Mar 14, 2005 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Job Routine
Replies: 5
Views: 946

You can NOT call a before/after subroutine from a job sequence directly. You have two main choices. Create a transform function that invokes the before/after subroutine (you will need a DEFFUN declaration or to use a "DSU." prefix in your CALL statement). Invoke the transform function using a Routin...
by ray.wurlod
Mon Mar 14, 2005 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data to Unix-Oracle as garbage
Replies: 3
Views: 942

Arabic is one of the more difficult character sets, particular for sorting and comparing. I don't currently have access to an NLS-enabled DataStage, so can't see what maps are supplied with the product. What you will need to know (to build your own map) is how your Arabic characters are encoded and ...
by ray.wurlod
Mon Mar 14, 2005 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $DS.NULLTRX
Replies: 3
Views: 675

$DS.NULLTRX is a catalog (VOC) entry for a "null Transformer" function that may or may not be present. The "not found" message in an upgrade is generated by an attempt to delete it, and may safely be ignored.
by ray.wurlod
Mon Mar 14, 2005 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving CATegory information
Replies: 6
Views: 1154

Command = "SELECT CATEGORY FROM DS_JOBS WHERE NAME = 'jobname';" Shell = "UV" Output = "" ExitStatus = 0 Call DSExecute(Shell, Command, Output, ExitStatus) Ans = Trim(Trim(Output,@FM,"A")) This counts as "a documented method" because t...
by ray.wurlod
Mon Mar 14, 2005 3:50 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: what is the differnce between profile stage and audit stage
Replies: 2
Views: 2275

ProfileStage is more about discovery, while AuditStage can deliver more metrics about the patterns in the data.
by ray.wurlod
Mon Mar 14, 2005 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete table before loading
Replies: 15
Views: 5084

If the table exists, then you can execute DROP TABLE command from the dssh environment on the server, or from the command window in the Administrator client.
by ray.wurlod
Sun Mar 13, 2005 9:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to retrieve text for error ORA-12154
Replies: 21
Views: 7316

Welcome aboard! :D Sounds like the connection between DataStage and Oracle was interrupted between (because?) when the error occurred and when DataStage issed a query (effectively an oerr command) to retrieve the text associated with the error code. Or it may be some incompatibility between the 9i c...
by ray.wurlod
Sun Mar 13, 2005 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete table before loading
Replies: 15
Views: 5084

DROP TABLE if created with CREATE TABLE or UV stage DELETE.FILE if created with CREATE.FILE or with Hashed File stage in account rm -rf (or DEL /S) if created with mkdbfile or with Hashed File stage in directory (a subsequent DELETE VOC ' hashedfilename ' may be required if SETFILE has been used to ...