Search found 53125 matches

by ray.wurlod
Mon Jul 10, 2006 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unit of mesure conversion
Replies: 3
Views: 790

Take a look in the SDK Transforms and Routines. There are many of these "multiply by a constant" already supplied with the product. Why re-invent the wheel (and risk getting a triangular rock on a square axle)?
by ray.wurlod
Mon Jul 10, 2006 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error running sequence
Replies: 6
Views: 1567

This is not the same as 7.5x2. Check with your vendor or support provider.
by ray.wurlod
Mon Jul 10, 2006 5:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error compiling Job Sequence
Replies: 17
Views: 4424

From the name I would suspect "DataStage job sequence generator". Remember (or search) that some of the compilation of a job sequence is performed on the client machine.
by ray.wurlod
Mon Jul 10, 2006 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uvconfig - DS Tuning ?
Replies: 2
Views: 1390

You also need to change a mindset; DataStage Engine does not provide any resources - it demands them. It is the operating system that must provide the resources. If you are getting code -14 errors either the demand level is too great or the supply level is too small. Basic economics.
by ray.wurlod
Sun Jul 09, 2006 6:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Supress extra Carriage returns
Replies: 21
Views: 4172

There is no way you can say that the Count() function is causing the problem. Element 1 of STAGECOM.ARR contains InLink.TheString (by now a variable named Pin%%V0S1P1.Column%%5); this is moved into register #11 (named $R11) for the Count() function. The value of the stage variable svCRLF (by now a v...
by ray.wurlod
Sun Jul 09, 2006 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CMD.EXE - large number on server
Replies: 5
Views: 1287

Try running them via the START command (which also allows you to assert their priority).
by ray.wurlod
Sat Jul 08, 2006 7:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning message while job compilation
Replies: 6
Views: 1150

You do have either a variable or column name called Stamp somewhere in this design. You may have to search for it (as others have suggested).

Is the More button enabled (in the compiler dialog) when this error occurs? Have you clicked More to see precisely what the compiler is complaining about?
by ray.wurlod
Sat Jul 08, 2006 7:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: newline in command stage
Replies: 8
Views: 3413

Is the string hard-coded then, if so, can you put the entire command in the command field (leaving nothing in the command parameter field)?

Have you tried it without the quotes around the newline (\n)?

What does the log entry tell you is the command being executed?
by ray.wurlod
Sat Jul 08, 2006 5:01 pm
Forum: Data Integration
Topic: Building Data Warehouse
Replies: 0
Views: 7958

Building Data Warehouse

A new (well, revamped)brief on building a Data Warehouse has just appeared on IBM website.

Unfortunately, no-one in IBM seems to be aware that they own a specialized Data Warehouse database called Red Brick, so offer a DB2-based solution.
by ray.wurlod
Sat Jul 08, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_AUDIT retention, schema, and content
Replies: 9
Views: 1779

This White Paper describes the nested relational model and the technical advantages it has over fully normalized models.
by ray.wurlod
Sat Jul 08, 2006 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedures in ODBC stage aceept Timestamp data as i/p
Replies: 8
Views: 2336

So you expect me to be a SQL Server expert too ? :roll:
by ray.wurlod
Sat Jul 08, 2006 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedures in ODBC stage aceept Timestamp data as i/p
Replies: 8
Views: 2336

The ODBC standard (published by Microsoft) is based on the SQL CAE Access Group's SQL standards, and does provide for a TimeStamp data type in the format YYYY-MM-DD HH:MM:SS using a 24-hour clock. This format, in turn, is based on the ISO 8601 standard for date and time representation. If your ODBC ...
by ray.wurlod
Sat Jul 08, 2006 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_AUDIT retention, schema, and content
Replies: 9
Views: 1779

Any sufficiently advanced form of technology is indistinguishable from magic (Arthur C. Clarke). In this case it was sufficiently advanced in the late 1960s!
by ray.wurlod
Sat Jul 08, 2006 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The semaphore timeout period has expired
Replies: 6
Views: 4142

SPINTRIES and SPINSLEEP relate specifically to mutex locks (one way to implement semaphores). No Windows operating system uses mutex locks. It is possible to wait on a semaphore in Windows with a specified timeout (probably hard-coded in DataStage), but this is a "sleep" wait; when the semaphore is ...
by ray.wurlod
Sat Jul 08, 2006 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do i specify reject link in FILTER STAGE ?
Replies: 1
Views: 3317

Draw an output link, right-click on that link and choose Convert to Reject from the menu.