Search found 53125 matches

by ray.wurlod
Wed May 02, 2007 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: index function
Replies: 3
Views: 1054

No, the arguments to Index() must be a string, another string and a positive integer. The third argument is an occurrence. You are searching for a substring within a string. The first occurrence of the substring, the second occurrence of the string, and so on. Searching for the -3rd occurrence does ...
by ray.wurlod
Wed May 02, 2007 11:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Locked (accessed by another User )
Replies: 12
Views: 6157

Set the auto-start property in the dsdlockd.config file to 1. Restart DataStage - the deadlock daemon will start and remain logged in. It wakes every 15 minutes, or such other interval as is specified in the dsdlockd.config file. Releasing a job is the old-fashioned way of creating a versioned, read...
by ray.wurlod
Wed May 02, 2007 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job import issues
Replies: 2
Views: 923

Or just change the Character Set property, at approximately line #4 in the DSX file, so that it is compatible.
by ray.wurlod
Wed May 02, 2007 11:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: vmdsr_sched.exe???
Replies: 3
Views: 3279

1. No. The command to schedule anything is AT.
2. No. The arguments are not documented.
3. See 1 and 2.
4. Use the dsjob command.
by ray.wurlod
Wed May 02, 2007 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset using as intermediate stage b/w two jobs
Replies: 6
Views: 1350

I understood that these properties could only refer to the nodes/partitions in the current configuration file.
by ray.wurlod
Wed May 02, 2007 6:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Server routine in Parallel Job
Replies: 10
Views: 3768

If it's to be a reusable reference table, a Lookup File Set may be preferable to a Data Set, as the index (hash table) on the key gets pre-built when the Lookup File Set is created.
by ray.wurlod
Wed May 02, 2007 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type of System
Replies: 4
Views: 1416

That you've used a singular pronoun ("it") to describe your server rules out MPP.
by ray.wurlod
Wed May 02, 2007 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What are correct gcc compiler options??
Replies: 6
Views: 2048

But on Linux you do use gcc.
by ray.wurlod
Wed May 02, 2007 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Next val from table lookup
Replies: 2
Views: 870

The easiest way to do it in DataStage would be to select that starting value from the target table in a reference input to a Lookup stage, with a constant key, and using Entire partitioning to get it onto every partition. SELECT 'X' AS DUMMYKEY, MAX(KeyCol) + 1 AS NEXTVAL FROM targettable Th...
by ray.wurlod
Wed May 02, 2007 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp problem
Replies: 3
Views: 1200

What does the source "timestamp" look like? VarChar(16) is quite an unusual data type for a timestamp.

Verify that you're getting the correct source data and results by creating a small test job that sends its output to a text file, and investigate that file.
by ray.wurlod
Wed May 02, 2007 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence
Replies: 7
Views: 1831

I'd use an Execute Command activity with the command test -z filename
by ray.wurlod
Wed May 02, 2007 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any way to increase the inter stag rowbuffer?
Replies: 19
Views: 4457

The reason there's a 1MB upper limit on row buffers is that no-one figured anyone would need anywhere near that. The default limit for ODBC connections, for example, is 8KB per row.
by ray.wurlod
Wed May 02, 2007 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs Locked (accessed by another User )
Replies: 12
Views: 6157

Do you have the DataStage deadlock daemon running? This will periodically clear the locks held by redundant processes.
by ray.wurlod
Wed May 02, 2007 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom warning
Replies: 5
Views: 1949

Did you look in and around line #272 of the RT_BP3988/JOB.1414850643.DT.1430025947.TRANS1 routine?
by ray.wurlod
Wed May 02, 2007 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ascential DataStage 7 Memory issues Windows 2003 Enterprise
Replies: 1
Views: 802

Welcome aboard. :D

Why do you assert that DataStage will only use 2GB of memory? How did you measure this? DataStage, running multiple jobs, will run multiple processes - did you count the memory consumption of all the uvsh or dssh processes, all the dsapi_server and dsapi_slave processes?