Search found 1015 matches

by Mike
Sat Jun 03, 2017 5:36 pm
Forum: General
Topic: Accessing IE during Information Server installation on Linux
Replies: 5
Views: 4006

If you want to use the Internet Explorer browser for installing on Linux, you'll be running it on a remote Windows computer. You can of course choose to use a browser on the local Linux computer, but that would be a supported Firefox browser. Just follow the installation instructions as documented. ...
by Mike
Fri Jun 02, 2017 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter through Complex Flat file stage
Replies: 3
Views: 4093

That filter option is where you would put a UNIX command to operate on your file (not going to be much use on a binary file). You could use a transformer constraint after the CFF stage. The constraint tab on the output tab might be an option if you convert the substring you want to do into a defined...
by Mike
Fri Jun 02, 2017 7:16 am
Forum: General
Topic: Datastage command using dsjob -ljobs does not display jobs
Replies: 18
Views: 11888

projectname will be case sensitive. Make sure you are matching case exactly and make sure that projectname does not contain any non-display characters. See what this gives you: dsjob -lprojects 2>/dev/null | grep projectname Then: dsjob -ljobs $(dsjob -lprojects 2>/dev/null | grep projectname) Mike
by Mike
Thu Jun 01, 2017 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field seperator
Replies: 6
Views: 5490

Look in appendix B of the parallel job developer's guide for all of the transform functions available. String functions would have options for you: DCount, Index, Field, [].

It would be good to become familiar with what is available.

Mike
by Mike
Fri May 26, 2017 7:28 am
Forum: General
Topic: Admin Access
Replies: 7
Views: 6062

Forgot to add when i log in to DS Admin, i cant seepermissions tab enabled for the project which was manually assigned to me in DS admin This tells me that the ID that you logged in with does not have the DataStage and QualityStage Administrator role (only a DataStage administrator has access to th...
by Mike
Thu May 25, 2017 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Rejected data columns in to reject file using RCP
Replies: 8
Views: 7217

What did your official support provider have to say?

It sounds to me like it's either a limitation of the reject link for the Oracle Connector or a bug.

Mike
by Mike
Thu May 25, 2017 1:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I use RCP for a multi table select
Replies: 1
Views: 2023

Yes. It's not all that different from a single table SELECT. However, you will have to provide the SELECT statement rather than having the stage generate the SQL. Provide the SELECT statement with a job parameter or combination of job parameters.

Mike
by Mike
Wed May 24, 2017 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP capability into server shared container
Replies: 8
Views: 6174

RCP is a parallel feature, so I doubt you'll ever get it to work with a server shared container. I'd stick with the parallel dataset. Someone was asking a while back about using ramdisk for the scratchdisk resource. I don't see why that might not be a viable option for the resource disk that paralle...
by Mike
Tue May 23, 2017 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation
Replies: 3
Views: 2445

The LastRowInGroup() transform function eliminates the need for an aggregator after the transformer. This transform function requires an upstream sort stage (even if it is set to no sort).

Mike
by Mike
Mon May 22, 2017 12:55 pm
Forum: General
Topic: Admin Access
Replies: 7
Views: 6062

You have a misunderstanding. DataStage permissions as set via the DataStage Administrator client are separate from the roles and permissions established via the Information Server admin console. You still have to grant your LDAP users and/or groups permission for a DataStage project via DataStage Ad...
by Mike
Fri May 19, 2017 4:29 pm
Forum: General
Topic: Routine maintenance
Replies: 2
Views: 2385

Everything on PaulVL's list is important.

I would also add space monitoring.

Never let your $TMPDIR location fill up.

Developers never think about deleting old and unnecessary datasets until there is a crisis. I like to routinely delete any dataset that is more than x (e.g. 30) days old.

Mike
by Mike
Fri May 19, 2017 12:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LDAP connection through datastage
Replies: 9
Views: 7293

It depends...

Start with some initial research:

1) What kind of API does your LDAP vendor provide?
2) Do you need a real-time interface, batch interface, or something in between?

Mike
by Mike
Thu May 18, 2017 10:45 am
Forum: General
Topic: Designer Login Issue ..Failure to authenticate current user
Replies: 6
Views: 3399

Is this a new installation? On the surface, it seems like the security setup for your installation has not been configured completely. If this is an installation that has worked previously, but is no longer working, then that would lead the troubleshooting down a slightly different path. Your inform...
by Mike
Wed May 17, 2017 1:59 pm
Forum: General
Topic: Two versions, one client machine
Replies: 8
Views: 4616

I gave up on the Multi Client Manager long ago. I always found it way too unreliable if client patches were ever needed.

I prefer different client versions to be in separate VMs.

Mike
by Mike
Sat May 13, 2017 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle field data type varchar2(4000)
Replies: 4
Views: 3779

A transformer stage must know its metadata at compile time, so to use a transform function such as Convert() you would need to operate on a named column. You could surround the transformer stage with a pair of parameterized modify stages to rename the column of interest (the modify stage does not ne...