Search found 50 matches

by Thomas.B
Thu Mar 05, 2020 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: French Characters Random Conversion issue
Replies: 2
Views: 6521

Hello,

How are encoded your input data ?
by Thomas.B
Wed Oct 23, 2019 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP enable,Wanted to know if there is a way to avoid warning
Replies: 3
Views: 7228

4 years later, sorry for the grave digging :-)

I had the exact same issue. To solve it, I had to add a "copy" stage right before the database connector, enable RCP and delete all the output columns.
by Thomas.B
Tue Mar 27, 2018 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records are not populating while Using RCP in job
Replies: 2
Views: 2729

You could set the "OSH_PRINT_SCHEMAS" environment variable to "True" to see the schema of each stage in the job log.
by Thomas.B
Thu Feb 15, 2018 11:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple records based on value in column
Replies: 8
Views: 5856

We need to send the record to the output unless the row number is higher than the number of rows to generate, in my head, my logic is right.

Anyway, Siva will test it if he decides that is the right solution.
by Thomas.B
Wed Jan 10, 2018 11:14 am
Forum: General
Topic: Select rows from table and use results as parameter to job
Replies: 6
Views: 5112

As for the original topic of this post - selecting rows from a table and using the results as parameters to a job, I think you have confirmed my lack of results from searching. That is, in a job sequence, it is not possible to read values from a database table, put those values into a list / array ...
by Thomas.B
Thu Nov 16, 2017 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 10818

I also execute those statements using the same job (in the "user defined SQL" section) : update THOMAS.DATA1 set INT02 = ORCHESTRATE.INT02 where INT01 = ORCHESTRATE.INT01; update THOMAS.DATA1 set INT03 = ORCHESTRATE.INT03 where INT01 = ORCHESTRATE.INT01; They both update the DATA1 table. I...
by Thomas.B
Thu Nov 16, 2017 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 10818

sriven786 wrote:Yes. Teradata connector write mode allows for User Defined but not the odbc connector (Only Insert/Update/Delete)
I am going a little off-topic here but you can definitely do it with an ODBC Connector, i just did it on DataStage 11.5 using Windows.

Image
by Thomas.B
Thu Nov 16, 2017 11:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector Multiple update Queries
Replies: 11
Views: 10818

User Defined SQL is disable if we use ODBC Connector as Output. Are you sure about that? I often use the "user defined SQL" section to execute instructions using the input columns with the "Teradata Connector" stage (I did not try the ODBC stage). @neeraj Did you try to add a CO...
by Thomas.B
Thu Oct 05, 2017 4:05 am
Forum: General
Topic: Export using dscmdexport failing to attach to project
Replies: 3
Views: 3444

You didn't specify the password ? You could try to add it with the /P option.
by Thomas.B
Fri Sep 22, 2017 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Parallel schema file - indicate # of rows to skip
Replies: 8
Views: 7087

Yes, you just need to disable it in the Sequential File and the Transformer stages, activate it in the Column Generator and the output will represent the schema file.
by Thomas.B
Tue Sep 19, 2017 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Parallel schema file - indicate # of rows to skip
Replies: 8
Views: 7087

You could use the "Filter" option of the Sequential File stage to skip the first rows from a file, for example :

Code: Select all

sed -e '1,3d'
will skip the first 3 rows.
by Thomas.B
Thu Aug 31, 2017 7:14 am
Forum: General
Topic: Ascential DataStage Multiple Security Issues
Replies: 4
Views: 3255

Re: Ascential DataStage Multiple Security Issues

JoeClark wrote:I didn't find the right solution from the internet.
The solution was right under the text you copy / paste from cnet.
by Thomas.B
Tue Aug 08, 2017 3:53 am
Forum: General
Topic: Automated Tool for ETL Testing/Validation
Replies: 5
Views: 5084

Maybe you could take a look at John's posts on that topic :
by Thomas.B
Thu Nov 10, 2016 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Validation with schema and column import
Replies: 6
Views: 4639

It is possible to set a string defining a null value in the Column Import stage or directly in the schema. The easiest way is to add it to the schema, you can add the 'null field' property that way: record {final_delim='end', quote=none, delim=';'} ( C1:string[max=24] { null_field = '' }; ) To add t...
by Thomas.B
Wed Nov 09, 2016 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Validation with schema and column import
Replies: 6
Views: 4639

DataStage see that value as a 0 length string, not a null.
Did you try to use the "Null field value" option on the "Format" tab ?