Search found 53125 matches

by ray.wurlod
Tue Dec 09, 2003 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substring in an variable string
Replies: 3
Views: 948

INDEX() to get the location of "SSP." then substringing to extract the particular characters you need. Try it yourself; come back if you're having difficulties.
by ray.wurlod
Tue Dec 09, 2003 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: remove tab delimiter
Replies: 6
Views: 1734

A simple test to see whether there are any non-printing characters is OCONV(TheString,"MCP"). This converts any non-printing character to a period. Note that " " (space) is a printing character. You can also use a hex editor on your output file to see exactly what the non-printing character is. If y...
by ray.wurlod
Tue Dec 09, 2003 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RPC Daemon is not running Datastage Version 6
Replies: 18
Views: 9279

chulett wrote:
ray.wurlod wrote:There's no way a tied socket can remain so through a UNIX re-boot!


Guess you've never worked on a Tru64 cluster, eh? :lol:


The OP is on Solaris, so I based my reply on this knowledge. :)
by ray.wurlod
Tue Dec 09, 2003 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cannot open executable job file
Replies: 23
Views: 6331

This is a strange error message in that RT_CONFIG1344 is not executable; it's a configuration file that describes an executable job! Maybe that's another area where the terminology could stand a little more clarity! That it can't be opened usually means that it's been removed, that its permissions h...
by ray.wurlod
Tue Dec 09, 2003 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RPC Daemon is not running Datastage Version 6
Replies: 18
Views: 9279

When you say "rebooted the server" do you mean "DataStage services" or the UNIX machine itself? There's no way a tied socket can remain so through a UNIX re-boot! Did you try starting the dsrcd daemon in debug mode after the re-boot? If so, what messages were in the log this time? Have you read this...
by ray.wurlod
Tue Dec 09, 2003 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: exec TCL after stage
Replies: 2
Views: 1126

Why? The DataStage job itself can do this. Create another link from your Transformer stage, containing columns to match the stage variables you want to send elsewhere. Run that link into an Aggregator stage, group by everything you need, and set the set function (on a dummy column) to "Last". The ou...
by ray.wurlod
Mon Dec 08, 2003 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read SAP clustered table
Replies: 1
Views: 691

From memory it can either use FTP or RFC. Check the manual.
by ray.wurlod
Mon Dec 08, 2003 6:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dat Encryption in DataStage
Replies: 14
Views: 4253

mhester wrote:Here are some references that may help you in your research regarding encryption/decryption algorithm's and methodologies.



Aaaaarrrrggghhh!! The apostrophe's again!!! :twisted:
by ray.wurlod
Mon Dec 08, 2003 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Training in India
Replies: 0
Views: 474

DataStage Training in India

Ascential Software have advised (on the Oliver list) that they now have "3 very experienced trainers on the ground in India". :D Contact Peter Zeglis (Peter.Zeglis@AscentialSoftware.com), who is fairly newly appointed to head up the Professional Services and Learning Services organisation in Asia Pa...
by ray.wurlod
Mon Dec 08, 2003 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I import DataStage universe table definitions ?
Replies: 3
Views: 1171

Metadata for the Repository tables is deliberately withheld. Even if you do create F or Q pointers, most of the run-time tables have only the primary key defined. The design-time tables have standard metadata defined (only four or five non-key columns), probably none of the detail you're seeking. An...
by ray.wurlod
Mon Dec 08, 2003 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generating numbers
Replies: 2
Views: 929

Use two Transformers. :idea:
Generate the numbers in the first, and pass this as one column along the link to the second.
Do the lookups in the second, the original number is available on the input link for use in any stage variable, output link constraint or column derivation.
by ray.wurlod
Mon Dec 08, 2003 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Warning with DataStage 5.2.2 on SUN Solaris
Replies: 5
Views: 1461

Thanks for the feedback.
The Debugger does have the tendency to make sure all variables are assigned, so that it can do what it does. The process of preparing them for potential inclusion on a watchlist has this effect.
by ray.wurlod
Mon Dec 08, 2003 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unidata stage
Replies: 4
Views: 1037

A Short History Lesson

Once upon a time UniVerse and UniData were competing database products (the former made by a public company called VMARK Software, the latter by a private company called UniData). DataStage was originally developed as a UniVerse application. Meanwhile UniData had acquired PRISM (of PRISM Warehouse E...
by ray.wurlod
Mon Dec 08, 2003 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unidata stage
Replies: 4
Views: 1037

UniData is a database product, similar (to the user) to UniVerse. Both are now in the IBM stable. The UniData stage is used to connect to the UniData database, much in the same way as the Oracle stage types are used to connect to the Oracle database, or the DB2 stage types are used to connect to DB2...
by ray.wurlod
Mon Dec 08, 2003 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to trap error reading or opening files?
Replies: 2
Views: 697

Whenever I've needed to achieve something like this I've done it in DataStage BASIC code, usually within job control. It's quite easy to check for the existence of one or more files, particularly since DataStage has the inherent ability to treat a directory (folder, for WinNT folks) as a "table" in ...