Search found 594 matches

by rameshrr3
Wed Oct 25, 2006 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning with string_from_timestamp function
Replies: 8
Views: 4514

warning with string_from_timestamp function

I get the following warning when using string_from_timestamp function in Modify Stage Input COlumn is "dt" of type timestamp Output is "dt_1" of type VarChar Specification is dt_1:string = string_from_timestamp(dt) Where do i specify a format string?Documentation is not really he...
by rameshrr3
Tue Oct 24, 2006 12:19 am
Forum: General
Topic: The Product Formerly Known as Hawk
Replies: 12
Views: 16990

Does it mean the existing UV metadata engine is going to be done away with?


Thanks
Ramesh
by rameshrr3
Thu Oct 19, 2006 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum and Minimum JOBNO in a project
Replies: 9
Views: 3308

Do a google on "Universe ODBC guide" and it will lead you to quite a few other useful documents.

HTH

Ramesh
by rameshrr3
Wed Oct 18, 2006 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete one record from file
Replies: 7
Views: 4302

The Basic Command only works with UNIVERSE Files. For Sequential files you would need to read the file, skip the first row and write to a temp file. Then delete the source file and load contents of temp file to a newly created file.
by rameshrr3
Wed Oct 18, 2006 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ecxecuting Shell Script in Datastage Jop properties
Replies: 8
Views: 4743

Try this

Code: Select all

ksh "YOUR COMMAND, WITH ABSOLUTE PATH"
by rameshrr3
Wed Oct 18, 2006 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Error
Replies: 10
Views: 4833

:D , The last time i got this error, all freestanding files in my $DATASTAGE/projects/ProjectName directory had been deleted, apparently by a stray semicolon in the filepath of a sequential file being written to the project directory :D . An ECASE has been raised to IBM. LOL This happened only for o...
by rameshrr3
Wed Oct 18, 2006 2:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading files Dynamically and setting JOB parameters
Replies: 8
Views: 2612

I had to read filenames from a UNIX folder and process them in the order of file creation time and i used the follwowing command to return a space delimited list of filenames. This list was used to trigger a list loop with space delimiter. For each counter value, tehre would be one filename, This fi...
by rameshrr3
Wed Oct 18, 2006 1:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Delimiter - Project level setting
Replies: 4
Views: 1478

Yeah a file delimiter cannot be specified as a parameter. The only way to work around this issue is to read all columns in the file as 1 column and split it in a transformer stage , using the delimiter in a Field() function, that does the column splitting for you . Only in such a case , can you para...
by rameshrr3
Tue Oct 17, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Compiling - error Variable 'handle$list' never assi
Replies: 3
Views: 2378

Ensure that you have a job activity stage in your sequencer. We faced a similar issue when we did not have a job activity stage in our sequencer and fixed it by adding a dummy job activity stage pointing to a dummy job in the sequencer.
by rameshrr3
Tue Oct 17, 2006 1:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage script(basic)
Replies: 5
Views: 3386

Reminds me of a seemingly crazy requirement to write a custom 'log file', apparantly for 'easy readability', as if the data stage director log is in hex. :lol:
by rameshrr3
Tue Oct 17, 2006 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage script(basic)
Replies: 5
Views: 3386

OpenSeq PathName To F.Var Then Loop ReadSeq Dummy From F.Var Else Exit ;* at end-of-file Repeat WriteSeq ReportText To F.Var Else Call DSLogFatal("Cannot write to ":PathName, "MyRoutine") End End Else Call DSLogFatal("Cannot open file ":PathName, "MyRoutine")...
by rameshrr3
Tue Oct 17, 2006 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage dropped from project, used java instead
Replies: 10
Views: 3839

Kduke, Maybe you are right, i guess data stage doesnt have anything in Universe above version 9.6. The XML example that we failed to generate from XML output pack is a fairly simple one from an XML perspective, considering all 'complexities' that are inherent in XML. Fact that XML output pack doesnt...
by rameshrr3
Mon Oct 16, 2006 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing XML data to a file.
Replies: 12
Views: 5295

Have you tried reading the input file from a folder stage, and passing its contents as the XML source column? We have quite a few jobs doing the same and it works fine.Has Xpath expression been defined in xml input stage column definition.
by rameshrr3
Mon Oct 16, 2006 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage dropped from project, used java instead
Replies: 10
Views: 3839

Yeah , i do concede , it would be easier to 'build' the XML in a transformer stage variable and pass it as an XML data element to the output XML pack under the parent element. That way i wouldnt be using those dreadful 'UV Skillz' or custom coding. For UV Skills and XML : http://publibfi.boulder.ibm...
by rameshrr3
Mon Oct 16, 2006 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage dropped from project, used java instead
Replies: 10
Views: 3839

Appararently the JDOM API seems to have simplified their task. And java experts are easier to get than UV Basic ones. :?