Search found 202 matches

by pavankvk
Thu Aug 20, 2015 9:53 am
Forum: General
Topic: DS 11.3 Windows AD Authentication
Replies: 3
Views: 2750

DS 11.3 Windows AD Authentication

Hi, we are setting up a 11.3 environment on winodws, and planning to use windows AD authentication for datastage. Essentially having same windows network id for datastage and single password for windows and datastage and completely governed by the password policy of the organisation. Is there a doc/...
by pavankvk
Tue Aug 11, 2015 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

Yes, that is why our existing env added it, but doing the same on 11.3 windows was throwing a syntax error for \
by pavankvk
Tue Aug 11, 2015 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

i meant to have the values passed as 'ABC','DEF' instead of \'ABC\',\'DEF\' and have the env variable set to 1. this preserves quotes. i will try to see without adding the env variable, if passing the entire string ('ABC','DEF') including paren as param value will work. it seems to work with db2 dri...
by pavankvk
Tue Aug 11, 2015 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

There is one other way with a code change thoough

instead of IN (#col_values#) just do a IN #col_values in the SQL and pass ('ABC','DEF') at run time.
by pavankvk
Tue Aug 11, 2015 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

Thank you, the combo appears to work.
by pavankvk
Tue Aug 11, 2015 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

Re: Passing values to IN operator in DS 11.3

We don't want to do a code modification and do a WHERE COL_NAME IN ('#col_values#') this only works for one value, if we pass multiple values it doesnt work. like ABC works COL_NAME IN ('ABC') but ABC,DEF will not work as it would translate to COL_NAME IN ('ABC,DEF') which results in a inccorect query
by pavankvk
Tue Aug 11, 2015 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values to IN operator in DS 11.3
Replies: 8
Views: 3289

Passing values to IN operator in DS 11.3

Hi We upgraded recently from 8.1 Linux to 11.3 windows. Some of our jobs use ODBC connector to SQL server and we have custom queries. Those queries contain IN operators and the values are passed as job parameters. For example WHERE COL_NAME IN (#col_values#) in run time, we pass \'ABC\' and it trans...
by pavankvk
Tue Apr 22, 2014 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple versions of datadirect ODBC drivers
Replies: 0
Views: 1208

Multiple versions of datadirect ODBC drivers

Hi, Can multiple versions of datadirect ODBC drivers co exist on the same datastage server? We have many projects on our server connecting to different databases. Some of our jobs point to SQL Server 2008 and some to ssql server 2012. Our current version of odbc drivers do not support 2012 so we hav...
by pavankvk
Wed Apr 16, 2014 12:56 pm
Forum: General
Topic: DS 9.1 Windows or Linux
Replies: 8
Views: 7081

Thank you.

Many of our sequences use Unix commands to move and archive files. The paths are parameterised. Do you know if the same sequence is exported and imported into a project hosted on DS 9.1 on windows, would the commands work with out modifications if we use MKS Tool kit?
by pavankvk
Wed Apr 16, 2014 8:16 am
Forum: General
Topic: DS 9.1 Windows or Linux
Replies: 8
Views: 7081

Thank you. the country is US:-) Is there a official documentation from IBM that talks about not using the MKS Toolkit on windows?
by pavankvk
Tue Apr 15, 2014 4:46 pm
Forum: General
Topic: DS 9.1 Windows or Linux
Replies: 8
Views: 7081

We can get support, we already have a production running linux server with DS 8.1. Should the lack of having a commitment to support a linux server outweigh all other benefits of a linux os?
by pavankvk
Tue Apr 15, 2014 2:22 pm
Forum: General
Topic: DS 9.1 Windows or Linux
Replies: 8
Views: 7081

DS 9.1 Windows or Linux

Hi, I am looking for an opinion here for the scenario we are in. We currently have 2 datastage environments 7.5 (running on windows) and 8.1 (running on linux). Since 7.5 is out of support, we have been migrating jobs to 8.1 and modifying the jobs/routines to suit the linux environments(directory pa...
by pavankvk
Fri Oct 18, 2013 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete and Insert in ODBC
Replies: 5
Views: 1583

that table that the job hits is pretty huge and scenarios for delete are very few. mostly inserts. identifying the deletes will be costly against this table. at the same time, i dont want the job to try deleting non existent records
by pavankvk
Thu Oct 17, 2013 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete and Insert in ODBC
Replies: 5
Views: 1583

Delete and Insert in ODBC

Hi In a single job, can this be implemented? Target A. Primary Key is a identity column. Logical/business key is the A1 column. Treat A1 as a set operation. If there is a new set A1, all the existing sets for A1 in the target table need to be deleted and new should be inserted A1,1,23,4 A1,3,4,5 Sou...
by pavankvk
Mon Jul 29, 2013 8:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Text Qualifier
Replies: 1
Views: 1314

Dynamic Text Qualifier

I am trying to implement a design where different feeds can provide data with same metadata, but different delimiters and text qualifiers. While I can make the delimiter driven by parameter,I cant do the same with text qualifiers. Is there a way we can dynamically asign the kind of text qualifier at...