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.
Search found 53125 matches
- Tue Mar 08, 2005 3:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error running uvsh
- Replies: 6
- Views: 4044
- Tue Mar 08, 2005 3:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequential file
- Replies: 4
- Views: 1354
- 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
- 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...
- Tue Mar 08, 2005 3:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequential file
- Replies: 4
- Views: 1354
- 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
- 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...
- Mon Mar 07, 2005 8:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parameter passing
- Replies: 3
- Views: 953
- 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
- 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...
- 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
- 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
- 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...
- 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
- 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 ...