Search found 452 matches

by vivekgadwal
Thu Apr 28, 2011 11:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see ODBC Connector Properties page
Replies: 9
Views: 6067

I am sorry, reference the patch? I think they sent us this patch in an e-mail. Let me find out the PMR of this and see if they posted it. Before anything, did you have QualityCenter upgraded in your system? Search for "exgrid.dll" in your workstation and see the versions. DS uses 2.0.0.8 a...
by vivekgadwal
Thu Apr 28, 2011 9:51 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Migrating Information Analyzer objects to v8.5
Replies: 10
Views: 7379

I was reading about this online and in IBM site, it says that "For UNIX or Linux, the istool command framework is located in: installation_directory/Clients/istools/cli, where installation_directory is the directory where you installed InfoSphere Information Server. For example, /opt/IBM/Inform...
by vivekgadwal
Thu Apr 28, 2011 9:34 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Migrating Information Analyzer objects to v8.5
Replies: 10
Views: 7379

Thanks for the reply Ray. I see this in our IBM Client Release notes IBM Information Server combines the technologies within the IBM Information Integration portfolio into a single unified platform that enables you to understand, cleanse, transform, and deliver trustworthy and context-rich informati...
by vivekgadwal
Wed Apr 27, 2011 6:23 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Migrating Information Analyzer objects to v8.5
Replies: 10
Views: 7379

I did not see Information Server Manager in the installed Client Components. Is it a special set-up that we need to do to get this client component? I will check on the ISTOOL.

Does IADB migrate the Column Analysis results and other results too as well as the schedules?
by vivekgadwal
Wed Apr 27, 2011 5:32 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Migrating Information Analyzer objects to v8.5
Replies: 10
Views: 7379

Thanks for your response Ray. I do not know much about ISTOOL or the Information Server Manager. I am under the impression that the latter is new to v8.5. If so, how can I use that to migrate the old objects? Where can I find documentation for the ISTOOL? I will try to search here... Also, there is ...
by vivekgadwal
Wed Apr 27, 2011 1:11 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Migrating Information Analyzer objects to v8.5
Replies: 10
Views: 7379

Migrating Information Analyzer objects to v8.5

All, We are upgrading our IIS to version 8.5 and I've been entrusted with this task. I have never delved into Information Analyzer and I must confess that my knowledge is next to nothing on this tool. I've been going through some posts on this site and also some manuals to figure out what I need to ...
by vivekgadwal
Tue Apr 19, 2011 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see ODBC Connector Properties page
Replies: 9
Views: 6067

Thank you for your response Ray. The problem is that the entire properties page is not present when we open the stage. We do not use any Citrix based environment to connect. Our connections are direct from our workstation to the server. However, this issue was diagnosed to be a problem with a "...
by vivekgadwal
Tue Apr 19, 2011 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to see ODBC Connector Properties page
Replies: 9
Views: 6067

Unable to see ODBC Connector Properties page

All, A strange problem started quite recently in our shop. We extensively use ODBC Connector stage to do our unloads. The "properties" page - which has the SQL and all the important properties - suddenly disappeared in my system, whereas others were able to open it up. This was 10 days ago...
by vivekgadwal
Wed Apr 13, 2011 2:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: case statment
Replies: 10
Views: 3804

times29, You can solve this in myriad ways. One of the ways is to place your case statements (2 of them) in two stage variables and then concatenate all that you want in another stage variable. Use this final variable in a derivation column of your choice. Otherwise, do it all in one stage variable ...
by vivekgadwal
Wed Apr 13, 2011 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: case statment
Replies: 10
Views: 3804

DSGuru2B is right. That would make it simpler. What I was trying to say is you can concatenate the second if then else in the same derivation/stage variable or a different one - depending on how aesthetic you want to be :wink:
by vivekgadwal
Wed Apr 13, 2011 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: case statment
Replies: 10
Views: 3804

Code: Select all

If COUNTRY = 'US' Or COUNTRY = 'CA'
Then 
       'US'
Else
       IF COUNTRY = 'IE' Or COUNTRY = 'GB'
       Then
              'GB'
       Else
              If ...
It can get pretty convoluted...this is a brute force attack on your question.
by vivekgadwal
Wed Apr 13, 2011 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: case statment
Replies: 10
Views: 3804

Using If-Then-Else

Code: Select all

If COUNTRY = 'US' Or COUNTRY = 'CA'
Then
    ...
    ...
by vivekgadwal
Wed Apr 06, 2011 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: isnull function
Replies: 8
Views: 6148

We use the IsNull function extensively, including in stage variables. So, I can confidently say it works. Normally, these kind of scenarios arise by the handling of the data by the tool (w.r.t the Nullable property settings and the data types). Obviously, this is defined by the developer, so it is i...
by vivekgadwal
Tue Apr 05, 2011 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: isnull function
Replies: 8
Views: 6148

What is the "Nullable" option set to? If it is set as "NO", then you might not be getting nulls during run time in DataStage, even if you can see Nulls in the Database. Also, jwiles and Soumya's comment should also be looked into.
by vivekgadwal
Mon Jan 31, 2011 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [osh.exe] <defunct> process
Replies: 9
Views: 9132

@jwiles: I have gone through the post and - please correct me if I am wrong - I see that it prescribes methods for orphan processes ?? after job runs ??. The problem as I understood from mandyli and the problem that we have is that when a job is started, it all of a sudden goes into this "hangi...