Search found 53125 matches

by ray.wurlod
Mon May 16, 2005 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC stage for CSV file - SQL syntax
Replies: 4
Views: 2369

Are you using an ODBC driver for text files? What happens when you click "Get SQL Info" in the stage properties of the ODBC stage?

Why are you using an ODBC stage at all? A Sequential File stage is by far to be preferred for reading CSV files.
by ray.wurlod
Mon May 16, 2005 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want to FTP Flatfile (Urgent, pls tell me the solution)
Replies: 6
Views: 2041

Are you having zeroes AND tabs between your data, or just zeroes? Either way you can use Ereplace() or Change(). For example; Ereplace(InLink.TheString), " 0 ", Char(9), -1, 0) Note that the second argument has three characters, space zero space, because this is how you...
by ray.wurlod
Mon May 16, 2005 2:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I WANT TO KNOW ABOUT A DATE FUNCTION
Replies: 3
Views: 863

... and please note that shouting (all capitals) is regarded universally on the Internet as rudeness.
by ray.wurlod
Mon May 16, 2005 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: i want to get the summary of a job..
Replies: 15
Views: 4813

Unless Err1 is a macro (which I doubt), you can't use it as an lvalue in the way you have in the WRITESEQ statement. Try (assuming variable r2 has been assigned a value: WriteSeq "Records outputted: " : r2 Else Call DSLogWarn("Unable to write to file.", "WriteSeq"&#...
by ray.wurlod
Mon May 16, 2005 2:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Continuous Delimiters
Replies: 5
Views: 1227

For the first file trim the trailing ";" characters. Trim(TheString, ";", "T") For the second file, convert to a dynamic array, empty strings to zero, then back to delimited. Convert(@FM, ";", Oconvs(Convert(";", @FM, TheString),"S...
by ray.wurlod
Mon May 16, 2005 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need assistance in setting the MFILES
Replies: 4
Views: 1254

Purely from memory - my current client is on Windows - the command is sysdef on Solaris.
by ray.wurlod
Sun May 15, 2005 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need assistance in setting the MFILES
Replies: 4
Views: 1254

What is the NFILE setting in your kernel? It is this value, not the ulimit value, that drives the maximum legal value of MFILES.
by ray.wurlod
Sun May 15, 2005 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Trainers in India
Replies: 7
Views: 2528

Yes, but Ascential will charge you just as much to supply the training materials with or without their instructor - even assuming they're willing to do the latter! And it may be the case that attending an "official" class will be a prerequisite for certification.
by ray.wurlod
Sat May 14, 2005 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ROUTINES
Replies: 3
Views: 1051

Almost but not quite. I suspect EffectiveDate is an input value, so needs to be the Routine argument. If it's an external-format date it will need an ICONV applied to it before the arithmetic. If it's a timestamp it will need decomposition into date and time components. FUNCTION ExpiryDate(Effec...
by ray.wurlod
Sat May 14, 2005 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborting because of warning messages
Replies: 4
Views: 1598

Either way you can override from the Job Run Options dialog (Limits tab), or by using command line option with dsjob.
by ray.wurlod
Sat May 14, 2005 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Trainers in India
Replies: 7
Views: 2528

The figure is about right - I was recently quoted US$18000 for 12 pax for Ascential to deliver the DataStage Essentials - EE class.
by ray.wurlod
Fri May 13, 2005 6:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Repeating blocks in XML
Replies: 2
Views: 1284

I'm sure this has been covered before. Did you try a Search?
by ray.wurlod
Fri May 13, 2005 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Monitoring the job from unix
Replies: 2
Views: 848

What do you mean by "log files directory"? If this is the DataStage logs, they are tables and they are in the DataStage project directory. If you have permission here then, theoretically, you could monitor your jobs. However, this would require knowledge of the internal workings of how DataStage rec...
by ray.wurlod
Fri May 13, 2005 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column name with space in Access Base
Replies: 1
Views: 1096

Bonne chance! :D

Thank you for posting the solution that you found - that Access sometimes (for example when there are spaces in identifier names) requires identifiers to be delimited with square brackets.