Search found 53125 matches

by ray.wurlod
Thu Sep 30, 2004 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Testing User Name/Password in DS Administrator
Replies: 5
Views: 1392

Certain products (particularly database products) have the annoying behaviour of inserting their executables directories at the beginning of PATH, presumably to maximize their performance at the expense of everything else. (Wouldn't you, in their place?) It's always a good plan to review PATH (and t...
by ray.wurlod
Thu Sep 30, 2004 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connectivity to DataStage (81016 error)
Replies: 3
Views: 2613

This might be a need to get the user name right. Have you tried: username machinename\username domainname\username Did all three fail? Try connecting via telnet (Start > Run > telnet machineID); your Windows authentication should be OK here. Select the UV account. Shell out to the operating system w...
by ray.wurlod
Thu Sep 30, 2004 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: target Format
Replies: 1
Views: 684

Pivot stage to do the pivot.
Use constants in the pivot stage to generate the month names.
by ray.wurlod
Wed Sep 29, 2004 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do I
Replies: 5
Views: 1507

Create a routine that writes the XML document as a field-mark delimited dynamic array. Just before returning, convert the field-marks to line-terminator characters. Because you're on UNIX: FUNCTION CreateXMLDocument(Args) Equate LF To Char(10) XMLDocument = "" * your code h...
by ray.wurlod
Wed Sep 29, 2004 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Testing User Name/Password in DS Administrator
Replies: 5
Views: 1392

Most unusual! ATTRIB is a DOS command. Open up a CMD.EXE shell and type ATTRIB /? to find out more. It's usually located in

Code: Select all

%WINNT_ROOT%\System32\attrib.exe
Could it be that your PATH environment variable has been amended so that %WINNT_ROOT%\System32 isn't in it?
by ray.wurlod
Wed Sep 29, 2004 3:34 pm
Forum:
Topic: i need metastage student guide
Replies: 9
Views: 4737

Copyright law, for starters. Unless you were prepared to give away your copy. I suspect the legal eagles could (would) find some prohibition against resale.
by ray.wurlod
Wed Sep 29, 2004 3:33 pm
Forum: Enhancement Wish List
Topic: Integrate BASIC file reading with other component
Replies: 8
Views: 4339

The project on which I'm currently working uses solely unterminated text files. The line terminator property is on the Stage tab in the Sequential File stage. Its only requirement is (obviously) that the records are in fixed width format. It's OK that there are multiple record formats (as we have he...
by ray.wurlod
Wed Sep 29, 2004 3:29 pm
Forum: Enhancement Wish List
Topic: Export log files
Replies: 2
Views: 2225

That you can do. Choose File > Print, then the Print to File check box.
by ray.wurlod
Wed Sep 29, 2004 4:35 am
Forum: Enhancement Wish List
Topic: Integrate BASIC file reading with other component
Replies: 8
Views: 4339

Welcome aboard! :D Can you be a bit more detailed with your specification? The easy solution would be to construct a shared container containing a Sequential File stage and an output link. The Sequential File stage can specify a Filter command; this could (perhaps) achieve your binary-to-text conver...
by ray.wurlod
Wed Sep 29, 2004 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IM002 - error code
Replies: 2
Views: 3114

Look at the entire error message. IM002 is the "SQL State", a generic ODBC error code that can almost always be ignored if further information is provided. [DataStage] is the vendor of the client software [SQL Client] is the name of the client software [ODBC] indicates that the ODBC driver manager w...
by ray.wurlod
Wed Sep 29, 2004 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Representing a decimal with thousand separators
Replies: 3
Views: 1686

You'll probably need a custom operator if you want a "pure" PX solution. If you're prepared to use BASIC, which slows PX down somewhat, the solution is easy using Oconv. If TheNumber < 0 Then "-" Else "+" : TrimF(Oconv(TheNumber,"MCN":@VM:"MD2,")&#...
by ray.wurlod
Wed Sep 29, 2004 1:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bottleneck Advice
Replies: 4
Views: 1347

I think Ken meant "thrashing" when he went with "trashing".

But, since he lives in the hurricane state (Florida), who knows? :lol:
by ray.wurlod
Wed Sep 29, 2004 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Table
Replies: 6
Views: 2106

UniVerse is a trademark of International Business Machines Corporation. Note that not all "tables" in the following list are full SQL tables with security and integrity constraints. Most are hashed files of some kind. UniVerse SQL System Tables UV_SCHEMA schemas UV_TABLES tables UV_VIEWS views UV_AS...
by ray.wurlod
Tue Sep 28, 2004 9:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Table
Replies: 6
Views: 2106

Yes, but then there's all the other ones, like VOC, VOCLIB, &*& in the project, lots more in the UV account, more again in the SQL Catalog, and so on. And there are some (like UV.LOGINS) that only occur on Windows. That's why I sought to clarify what information is actually sought.
by ray.wurlod
Tue Sep 28, 2004 9:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared containers
Replies: 4
Views: 2463

Is /tmp becoming full during processing?