Search found 42189 matches

by chulett
Sun Feb 19, 2012 8:41 am
Forum: General
Topic: Dsjob syntax for windows 2008 - without user and password
Replies: 6
Views: 1231

Look into the -f option to read the credential information from a file and thus not expose them on the command line.
by chulett
Sat Feb 18, 2012 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special character "@" in unix file
Replies: 3
Views: 1210

qt_ky wrote:Every character is special...
Or none of them are, being just... characters. :wink:
by chulett
Sat Feb 18, 2012 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector issue
Replies: 3
Views: 1714

Assuming you should be able to work with this table then your connection information is not correct after swapping out the stage. Those errors mean either you have connected to the wrong instance or via the wrong user. Your connected user either does not own the table, have access via a synonym or d...
by chulett
Sat Feb 18, 2012 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting only executables after importing
Replies: 6
Views: 1910

Yes, of course, another way would be to not bring them in in the first place. Or just don't worry about it and compile away, something you'd need to do in either case.
by chulett
Sat Feb 18, 2012 9:14 am
Forum: General
Topic: something spectacular with the id 'dsadm'
Replies: 6
Views: 1893

'dsadm' is the superuserof DataStage, the equivalent (in a manner of speaking) of 'root' in a UNIX system. Not sure how spectacular that is but it certainly is... super. :wink:
by chulett
Sat Feb 18, 2012 9:12 am
Forum: General
Topic: Delete job from command line
Replies: 9
Views: 4536

qt_ky wrote:From Designer 8.x, you can hold down the standard Windows shift and ctrl keys to select as many jobs as you want at once, hit the delete key, yes to confirm, then boom... Very fast and easy.

I don't recall if you can do the same in 7.x.
You can.
by chulett
Fri Feb 17, 2012 6:19 pm
Forum: General
Topic: Delete job from command line
Replies: 9
Views: 4536

There's no such option that I recall...
by chulett
Fri Feb 17, 2012 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database down - Datastage not aborted but hung
Replies: 2
Views: 1303

I'm curious... the database was down before the job started or it went down while the job was running?
by chulett
Fri Feb 17, 2012 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pattern matching
Replies: 1
Views: 772

Use Index() to perform a substring match.
by chulett
Fri Feb 17, 2012 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting only executables after importing
Replies: 6
Views: 1910

Then just rebuild it, there's no need (nor any capability AFAIK) to delete just the executables. Note that you'll probably need to 'force compile' when you do.
by chulett
Fri Feb 17, 2012 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error occurred in call to ORPHCallActivePluginInitialize().
Replies: 2
Views: 2263

Error:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist

The instance you are connecting to is down.
by chulett
Fri Feb 17, 2012 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp issue.
Replies: 4
Views: 1074

Out of curiousity, which way worked fine for you?
by chulett
Fri Feb 17, 2012 11:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp issue.
Replies: 4
Views: 1074

I don't believe you can aggregate timestamps directly unless you select the 'Preserve Type' option. Otherwise, convert to a string in the format shown and take the max of that.
by chulett
Fri Feb 17, 2012 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MODIFY OPERATOR DROP
Replies: 5
Views: 1499

Just to confirm... no.
by chulett
Thu Feb 16, 2012 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Source Data by Key
Replies: 4
Views: 1497

FYI - that way invalidates the use of the index over LOG_DT_TM, better to put a TO_DATE around your parameter value. Both will work, the change will make it work more better. :wink: