Search found 53125 matches

by ray.wurlod
Tue Mar 08, 2005 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error running uvsh
Replies: 6
Views: 4044

Does it occur if you use the uv command rather than uvsh?
Does it occur if you use the dssh command rather than uvsh?

This can also be a UniVerse problem; you might benefit by searching the archive of the u2-users list.
by ray.wurlod
Tue Mar 08, 2005 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 4
Views: 1354

So that is the basis of your "remembering"; the stage variable svPrefix is defined as If InLink.StringCol[10,1] = "X" Then InLink.StringCol[3] Else svPrefix What steps do you take to ensure that the tenth position is always "X" in row number 1? If uncertain, modify to: If InLink.StringCol[...
by ray.wurlod
Tue Mar 08, 2005 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup and simultaneous update
Replies: 22
Views: 6195

If they're separate jobs, then they're not simultaneous and you shouldn't have any problem.
(If you wanted to do it all in one job, then you should enable lock for update when reading from the hashed file.)
by ray.wurlod
Tue Mar 08, 2005 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Hashed file via UniVerse Stage
Replies: 4
Views: 1692

The warning message itself tells you exactly what the problem is. You have a metadata mismatch. In the table (hashed file) the column is defined as VarChar, while in your DataStage job it is defined as Char. Change your DataStage job to match what's really in the table and the warning message will m...
by ray.wurlod
Tue Mar 08, 2005 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 4
Views: 1354

Are there always three rows in each group?
If so, "remember" the three characters in a stage variable, changing only when Mod(@INROWNUM,3) equals 1, and use the stage variable in the output column derivation to supply the first three characters.
by ray.wurlod
Tue Mar 08, 2005 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using ODBC stage accessing SQL Server Text field
Replies: 8
Views: 2141

I think it's a known restriction in ODBC. Long VarChar is limited to 64KB.
by ray.wurlod
Tue Mar 08, 2005 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: automatic job design
Replies: 6
Views: 1523

It's quite easy to create your own template job; add all needed parameters and all needed stage types, but omit the column definitions. Then make a template from this ("new template from job"). The template is stored with your DataStage client software, in a Templates folder, so you may need to dist...
by ray.wurlod
Mon Mar 07, 2005 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameter passing
Replies: 3
Views: 953

This is true even on Windows. 8)

One of five UNIX-like executables that are part of DataStage is touch.exe. Of course, you may need to include the DataStage Engine directory in your PATH, or fully specify the pathname of the touch.exe command.
by ray.wurlod
Mon Mar 07, 2005 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage running on windows 2003??
Replies: 9
Views: 2056

I was not able to install DataStage 7.1r1 server successfully on Windows 2003.
by ray.wurlod
Mon Mar 07, 2005 8:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieve output value from a procedure in a routine
Replies: 4
Views: 2245

No, not "instead of SQLBindParameter". They serve different ends. SQLBindParameter binds variables onto parameter markers in the SQL. For example, the following statement has three parameter markers, so would require three calls to SQLBindParamter. SELECT col1, col2 FROM table WHERE col5=:1 AND col8...
by ray.wurlod
Mon Mar 07, 2005 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting - ds_ipcgetnext - timeout waiting for mutex
Replies: 4
Views: 2438

Search the forum for "mutex" and "SPINTRIES". :wink:
by ray.wurlod
Mon Mar 07, 2005 8:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in jobs with Funnel Stage
Replies: 5
Views: 1492

Do parallel jobs also run via DSD.RUN? I understood that this was only for server jobs and job sequences. But I'm happy to learn stuff.
by ray.wurlod
Mon Mar 07, 2005 5:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To retrieve return value from a stored proc
Replies: 1
Views: 909

This is not a permanently-staffed support centre. If you want immediate and urgent support, sign up for 24x7 priority support with a support provider. Otherwise allow for the fact that most of the posters here work for a living and have to sleep occasionally. Try putting the call to SQLBindCol ahead...
by ray.wurlod
Mon Mar 07, 2005 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle stored proc doesn't return SQL.SUCCESS.WITH.INFO
Replies: 3
Views: 1757

Try SQLBindCol before SQLExecDirect.
by ray.wurlod
Mon Mar 07, 2005 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle stored proc doesn't return SQL.SUCCESS.WITH.INFO
Replies: 3
Views: 1757

Almost ALL of the BCI functions return an error/status code. To get the result of a query/sp you need to bind variables to columns in the result set, using SQLBindCol. If you only have one column in the result set, you only need to bind one variable. The value from the result set is loaded into the ...