Search found 76 matches

by mleroux
Mon Jul 26, 2004 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The order in which links are used in a datastage transformer
Replies: 10
Views: 3314

Also disable write caching for the hashed file stage that writes to the hash file.
by mleroux
Thu Jul 22, 2004 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert UNICODE Value in Arabic to MS1256
Replies: 2
Views: 937

You will have to install National Language Support (NLS) with your DataStage server. When you do this, you will see an NLS tab next to the General Tab in your data source and target stages. :arrow: In the source stage, specify UTF-8 (Unicode). :arrow: In the target stage, specify MS 1256 (Arabic). T...
by mleroux
Thu Jul 22, 2004 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Modelling Tool
Replies: 6
Views: 2525

Sybase PowerDesigner 10 and upwards supports Red Brick.
by mleroux
Thu Jul 22, 2004 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrading ORACLE and SAP pluggin
Replies: 2
Views: 1287

Locate the DLL's of the plug-ins, and re-register them in Manager. Use: Tools --> Register Plug-In... then register the DLLs before trying to open the jobs in Designer. I'm not sure if there's a way to "migrate" all plug-ins automatically.[/code]
by mleroux
Thu Jul 22, 2004 4:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Formating issue
Replies: 3
Views: 986

Just check if it needs a leading zero:

Code: Select all

IF(LNK1.TRANSACTIONTYPE = '100' ) Then '1215' : (LNK1.Year - 1) 
Else 
  If LNK1.PeriodNum < 10 Then
    '0' : LNK1.PeriodNum : '15' : LNK2.Year
  Else
    LNK1.PeriodNum : '15' : LNK2.Year
by mleroux
Mon Jul 19, 2004 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange data in a manually-created hash file
Replies: 4
Views: 1104

Thanks! I had to make two corrections to Ray's code: INSERT INTO DICT DimDateHash(@ID, F1, LOC, FORMAT) VALUES ('DateID', 'D', 1, '19L'); It is, of course, the actual hash file name (DimDateHash) that is used and not the routine's file handle (DimDate). LOC is a number and not a string so it's 1 and...
by mleroux
Mon Jul 19, 2004 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to move from ETI *EXtract to Datastage
Replies: 3
Views: 2246

Mainframe accessibility in DataStage is not included in the software by default. As far as pricing is concerned, you'll need to take the pricing of the relevant plug-in(s) into account.
by mleroux
Mon Jul 19, 2004 1:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange data in a manually-created hash file
Replies: 4
Views: 1104

Some additional info:

When I import the hash file's def, I get one field called AT.ID, Varchar length 10. It should be one field, either Timestamp len 19 or Varchar len 19.
by mleroux
Fri Jul 16, 2004 12:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

... or the Re-Build Indexes option from the DS.TOOLS menu on the server. Please allow me to ask a question that will surely make obvious my level 1 status. How do I get to this DS.TOOLS menu? Are you selecting "DS Routine" from the expression editor's operand menu? Yes, and it wasn't ther...
by mleroux
Thu Jul 15, 2004 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Populating a time dimension
Replies: 1
Views: 1116

Populating a time dimension

I have a time dimension that simply needs sequential date values in a YYYY-MM-DD format. How can I use a DataStage job to populate a time dimension? (I am not interested in PL/SQL scripts, etc. I know how to do it with those.) There must be no datasource. The job must generate the values and insert ...
by mleroux
Thu Jul 15, 2004 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

ray.wurlod wrote:Here it is!
My point, exactly. If I can see it in Manager, why not in Designer?
by mleroux
Thu Jul 15, 2004 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

My code is case-sensitive. It's called Timestamp in Manager, and Timestamp in my code. No joy. I tried compiling it with the red error signals, but it doesn't compile. The functions I can see in Manager's Routines\Examples\Functions: ConvertMonth ConvertQuarter ConvertTag ConvertWeek ConvertYear Qua...
by mleroux
Wed Jul 14, 2004 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

I solved it by salvaging code from Timestamp in Manager. To insert the new value: Oconv(Iconv(MatchField(Latest_date.DateID,"0X' '2N':'2N':'2N",1) ,"D-YMD[4,2,2]") + 1,"D-YMD[4,2,2]"):" 00:00:00" To insert an initial value: "1996-07-04 00:00:00" I ST...
by mleroux
Wed Jul 14, 2004 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

I simplified the insertion of the initial value by just using a timestamp string from the start. To insert the new value: Timestamp((Timestamp(Latest_date.DateID, "DATE") + 1), "TIMESTAMP") To insert an initial value: "1996-07-04 00:00:00" I still can't see the Timestam...
by mleroux
Wed Jul 14, 2004 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date values out of and into Microsoft Access
Replies: 11
Views: 3686

I've now been trying to use the Timestamp DS Routine to accomplish my goal: To insert the new value: Timestamp((Timestamp(Latest_date.DateID, "DATE") + 1), "TIMESTAMP") To insert an initial value: Timestamp(Iconv("4 JUL 1996", "D"), "TIMESTAMP") For ...