Search found 2886 matches

by qt_ky
Thu Mar 29, 2012 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting multiple records into one
Replies: 14
Views: 5506

Regarding the loop, a little further down there is another example, "Input row group aggregation included with input row data." Not that you want to aggregate in your case, but I'm just saying I think what you want to do is possible with a loop. You can get very creative with loops. Howeve...
by qt_ky
Thu Mar 29, 2012 8:50 pm
Forum: IBM QualityStage
Topic: ODBC Data Source for Match test
Replies: 11
Views: 16584

I believe that mysql ODBC connectivity is supported by the bundled Progress DataDirect ODBC drivers. I don't know if mysql is supported as a QualityStage Match Designer Database, since it is not mentioned in the tech note.
by qt_ky
Thu Mar 29, 2012 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting multiple records into one
Replies: 14
Views: 5506

QualityStage adds "data quality" stages to your DataStage Designer palette. If you check under the "processing" palette category, you should find the Pivot stage. You can mix and match DS & QS stages in the same job design.
by qt_ky
Thu Mar 29, 2012 4:49 pm
Forum: General
Topic: Passing values from job parameter
Replies: 6
Views: 1712

Re: Passing values from job parameter

I am trying to run a job where it should prompt me with ten different values during run time. My question is how do I define these values for a single job parameter? With a single job parameter, you will be prompted a single time for a single value. What is it you are actually trying to accomplish ...
by qt_ky
Thu Mar 29, 2012 4:46 pm
Forum: IBM QualityStage
Topic: ODBC Data Source for Match test
Replies: 11
Views: 16584

Check out this IBM tech note:

http://www-01.ibm.com/support/docview.w ... wg21409481

It mentions DB2, Oracle, and SQL (meaning SQL Server; not mysql).
by qt_ky
Thu Mar 29, 2012 4:35 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can we export the column analysis result
Replies: 5
Views: 3685

If you're on the Column Analysis screen, look in the top right corner for a down-arrow menu to click on. From there choose Create Report. You can create reports from other menus also. Run through the wizard. For Excel, choose Output Format of XLS.
by qt_ky
Thu Mar 29, 2012 4:20 pm
Forum: General
Topic: main_program: Duplicate name registration
Replies: 4
Views: 1355

Maybe it's not a duplicate line... The message says duplicate entry. Good luck with that one...
by qt_ky
Thu Mar 29, 2012 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reference link data to be passed
Replies: 9
Views: 2452

Yes... the Merge stage should work too!
by qt_ky
Thu Mar 29, 2012 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting multiple records into one
Replies: 14
Views: 5506

Transformer stage loop should work as well. The product documentation has good loop examples.
by qt_ky
Thu Mar 29, 2012 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to Create Fixed With File using Sequencial file Stage
Replies: 1
Views: 935

On the Format tab set only these settings: Record level settings: Final delimiter = none Record length = fixed Field defaults: Delimiter = none Quote = none You can probably delete settings that are set to "none" but I'm certain the above combination works. Of course, make sure you don't h...
by qt_ky
Wed Mar 28, 2012 9:42 pm
Forum: General
Topic: Escaping # in Execute Command definition
Replies: 4
Views: 2466

DataStage removes any single # from ExecCommand stage upon execution. I think it is a bug, as it should give a warning and also provide an escape character for a # sign. In place of this: !/^#/ Substitute in the regular expression octal code \043 in place of # like so: !/^\043/ Hex may also work as ...
by qt_ky
Wed Mar 28, 2012 7:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how config odbc connect greenplum on datastage?
Replies: 10
Views: 6043

Is that error coming when you run a job or when you attempt to import ODBC table definitions? Have you tried both ways and get the same error? If you have not tried running a job, you could manually define a column from a known table without importing all metadata first, just as a test. Perhaps ther...
by qt_ky
Wed Mar 28, 2012 7:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report customize issue
Replies: 5
Views: 1405

I tried it on 8.7 with all default settings by adding descriptions to every source, processing, and target stage, then saving the job, not compiling it, generating the report, and all descriptions show up as expected. I'm not sure what version you're on, but perhaps it has a bug. Try it from a Desig...
by qt_ky
Wed Mar 28, 2012 7:37 pm
Forum: General
Topic: Time between scripts in a batch increased after upgrade
Replies: 28
Views: 7521

The permissions on your DSParams file look OK to me. The group owner of the file... I'm not so sure. Also, it's showing a * at the end of the file name. Double check with ls -l DSP* on multiple project directories to compare. Whoever modified it last shows as the current file owner along with that u...
by qt_ky
Wed Mar 28, 2012 7:31 pm
Forum: General
Topic: Passing values from job parameter
Replies: 3
Views: 1060

If you are asking about a multi-instance job, those can be parameterized and run many instances simultaneously with different parameter values or even same values all at once or in sequence. It sounds like your question may be slightly different. If so, can you give an example?