Search found 53125 matches

by ray.wurlod
Tue Apr 15, 2008 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 7.5: UTF8
Replies: 6
Views: 7375

Of course I don't see any. I can't see your data. Try UTF-8; chances are that that's the best fit for the Oracle map. Is this what's specified in the oracle_cs.txt file?
by ray.wurlod
Tue Apr 15, 2008 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General XML format Carriage Return Line Feed CRLF
Replies: 6
Views: 1823

:idea:
If you can figure out how to do that from a command line, you can fire up that command as an after-stage or after-job subroutine.
by ray.wurlod
Tue Apr 15, 2008 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to load the data in FTp stage
Replies: 7
Views: 1480

Any table definition in the Repository can be loaded into any stage type. Table definitions are global in scope, and stored in the same structure irrespective of whence they were imported. This is one of the hidden strengths of DataStage. For example, having imported a table definition of a database...
by ray.wurlod
Tue Apr 15, 2008 3:08 pm
Forum: General
Topic: DataStage User Login
Replies: 5
Views: 5188

Re: DataStage User Login

deanwalker wrote:Information Server does not have the 'Omit' option on the Attach dialog.

See point 4 in my initial response on this thread.
by ray.wurlod
Tue Apr 15, 2008 3:05 pm
Forum: General
Topic: DataStage User Login
Replies: 5
Views: 5188

Amazingly asking that If UV.FLAVOUR is not used by DataStage, Would DataStage not have any UniVerse Account flovour inside? If not, Which flavour of UniVerse Account DataStage takes for its Engine functionality?( among IDEAL, IN2, INFORMATION, PIOPEN, PICK and REALITY or none) IDEAL. No choice is o...
by ray.wurlod
Tue Apr 15, 2008 3:03 pm
Forum: General
Topic: Counting number of records in Hashed File
Replies: 4
Views: 1746

Yes, it's a regular query that you can do with a UniVerse stage, or from the Administrator client or TCL. Create a single integer column with a derivation of COUNT(*). If the hashed file has been created in a directory (not in an account) you will also need to create a pointer to it using the SETFIL...
by ray.wurlod
Tue Apr 15, 2008 3:01 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: SCD in WebSphere DataStage Designer
Replies: 2
Views: 2726

Welcome aboard.

Please post your question in the Server Edition forum if you are asking about server jobs, or in the Enterprise Edition forum if you are asking about parallel jobs. (This is general advice - I know that you need the Enterprise Edition forum for this particular question.)
by ray.wurlod
Tue Apr 15, 2008 2:59 pm
Forum: IBM QualityStage
Topic: CASS vs SERP implemnetation differences?
Replies: 8
Views: 4238

CASS is purely USA.

You can apply the COUNTRY rule set to get QualityStage to take a best guess at the country that an address is in.

You would normally do that before applying any country-specific rule sets, and filter by country.
by ray.wurlod
Tue Apr 15, 2008 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to loop till the end of file using a server routine?
Replies: 8
Views: 1381

Code: Select all

Ans = ""
OpenSeq pathname To filevariable
Then
   Loop
   While ReadSeq Line From filevariable
      Ans<-1> = Line
   Repeat
End
CloseSeq filevariable
by ray.wurlod
Tue Apr 15, 2008 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regading Timestamp..
Replies: 9
Views: 1801

How do you determine "15 days"? This is at the crux of the issue.
by ray.wurlod
Tue Apr 15, 2008 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function similar to Oconv in parallel jobs
Replies: 4
Views: 4009

Stop thinking like a server developer. Oconv is treating 065535 as the number of seconds since midnight. Try the TimeFromSecondsSince() function (I'm guessing the name, so be flexible).
by ray.wurlod
Tue Apr 15, 2008 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open file compile.tmp
Replies: 3
Views: 2139

Do you have write permission in the project directory?
by ray.wurlod
Tue Apr 15, 2008 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to login using new created UserId
Replies: 12
Views: 4204

Have you re-started either DataStage services or the Windows operating system since adding this user ID?

What user ID are you using to attempt to login? Unqualified, qualified with machine name or qualified with domain name?
by ray.wurlod
Tue Apr 15, 2008 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regading Timestamp..
Replies: 9
Views: 1801

Is there a "last updated date" column in the record as well? That would make the task very easy. Otherwise the solution is going to involve figuring out how to identify which "R" records have been there for your 14 day requirement. I can't really think of an elegant solution where the storage is in ...
by ray.wurlod
Tue Apr 15, 2008 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Applying Loop in Datastage
Replies: 12
Views: 3942

Wanna race? Any N (identically structured) rows up to 10 million.