Search found 15603 matches

by ArndW
Wed Oct 22, 2008 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORACLE not available
Replies: 2
Views: 1144

Most likely the database connectivity values are parameters, and they are not being passed correctly from the sequence.
by ArndW
Wed Oct 22, 2008 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Not found in Desginer
Replies: 4
Views: 1043

In the web console, under Administration -> Domain Management -> DataStage Credentials -> [your server] open configuration are you using share registry? if not, perhaps the userid and password combination given on the right-hand side of the screen is incorrect.
by ArndW
Tue Oct 21, 2008 10:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: French Characters are not converted correctlly in Oracle tbl
Replies: 5
Views: 7169

How are you looking at the data (hint: don't use "view data"). What is your source file NLS setting, your project default NLS setting and what is your Oracle NLS setting.
by ArndW
Tue Oct 21, 2008 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to get the count from the inputlink
Replies: 9
Views: 1973

If 1 row goes down the link, it will return a "1"; if no rows are transferred you get a "0".
by ArndW
Tue Oct 21, 2008 4:47 am
Forum: General
Topic: where the job logs getting stored
Replies: 11
Views: 3447

Yes, "dsjob -logdetail MyProject MyJob" would list the detailed log for job 'MyJob' in project 'MyProject'
by ArndW
Tue Oct 21, 2008 4:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LONGVARCHAR datatype usage in Universe stage
Replies: 3
Views: 1730

Stay with longvarchar; DataStage server strings can be as long as you wish (limitation is how much virtual address space your process can allocate, not an actual number-of-bytes one).
by ArndW
Mon Oct 20, 2008 11:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date addition in a constraint
Replies: 2
Views: 849

StringToDecimal('2008-01-01') does not result in that which you are looking for. Try JulianDayFromDate to get an integer.
by ArndW
Mon Oct 20, 2008 10:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: "UNLOCK not in you VOC"
Replies: 11
Views: 7756

The &SAVEDLISTS& file in DataStage or UV is used to save select lists. This feature is not used in DataStage but extensively used in UV applications.
by ArndW
Mon Oct 20, 2008 4:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: U_TRUNCATED_CHAR_FOUND
Replies: 3
Views: 1705

What character datatypes are you using - "unicode" or not?
by ArndW
Sun Oct 19, 2008 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage ,Can not pass job parameters
Replies: 11
Views: 2428

Oh well, that approach works for some calls that are passed through the UNIX shell, so I though it might be worth a try.
by ArndW
Sun Oct 19, 2008 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Copy stage
Replies: 2
Views: 955

I don't use "force" unless there is some error in processing caused by DataStage removing the copy stage.
by ArndW
Sun Oct 19, 2008 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job exists in Director but not in Designer repository
Replies: 10
Views: 2706

Probably "XMETA" - check which name you used during the installation.
by ArndW
Sun Oct 19, 2008 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage ,Can not pass job parameters
Replies: 11
Views: 2428

In this case it works because the number string is implicitly converted to number format. Will the quoting work if you use "\'" instead of "'"?
by ArndW
Sat Oct 18, 2008 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: while checking for null
Replies: 4
Views: 1237

Add the environment parameter $APT_DISABLE_COMBINATION and set the value to "true" for your run.
by ArndW
Sat Oct 18, 2008 4:50 am
Forum: General
Topic: Updating a record in sequential file
Replies: 6
Views: 1660

Sequential files cannot be updated like tables. In order to change a sequential file in DataStage you will need to read it and write it to another, making whatever changes you require as the data is passed through.