Search found 42189 matches

by chulett
Wed Oct 05, 2005 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Activity Stage
Replies: 7
Views: 2959

ray.wurlod wrote:Can you post your design? Wrap it in code tags, and use Preview until you get it looking comprehensible.

Or do an Exact search on this forum for the term imageshack - you'll find a way to post an actual screen print of your job design.
by chulett
Wed Oct 05, 2005 6:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB command in UNIX
Replies: 13
Views: 8675

Have looked carefully in the director and there is none scheduled to run or jobs that spill over to 1AM. In addition to the other advice, note that the Director only shows schedule information if the jobs have been scheduled by whomever you are currently logged in as. If you have multiple userids s...
by chulett
Wed Oct 05, 2005 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Reference lookup counts
Replies: 8
Views: 2486

You would actually have to specify three fields on the Columns tab, of which the first two would be marked as Key fields and then return all three in your sql:

Code: Select all

Select key1, key2, COUNT(*) FROM table WHERE key1 = ? AND key2 = ? group by key1, key2

Something along those lines.
by chulett
Wed Oct 05, 2005 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB command in UNIX
Replies: 13
Views: 8675

As do I and it works fine for me - and I assumed that dev was one of your project names, is it? :?

If you need to, try it with the server / userid / password keywords as well.
by chulett
Wed Oct 05, 2005 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB command in UNIX
Replies: 13
Views: 8675

There's no -project, it's -ljobs and if you are on the same box as the server it's even easier:

Code: Select all

dsjob -ljobs dev

If you issue the command without arguments, it will dump out a normal 'usage' type message.
by chulett
Wed Oct 05, 2005 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return value of RowProcCompareWithPreviousValue??
Replies: 2
Views: 1632

Look at the source of the routine. Check the online help for the System Variables in particular the definition of @TRUE and @FALSE.
by chulett
Wed Oct 05, 2005 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing file Permission through shell script by Ftp process
Replies: 14
Views: 4676

The same series of steps you would have to do if you were telnet'ing into the box after the ftp and changing the permissions yourself.
by chulett
Wed Oct 05, 2005 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you handle missing coloumns
Replies: 3
Views: 1367

ray.wurlod wrote:I'd love to help you out. Which way did you come in?

And you thought *I* posted some groaners. :wink:
by chulett
Wed Oct 05, 2005 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running sp's through SQL Server
Replies: 9
Views: 3135

What version of DataStage? I was under the impression that the 'latest' version had support for more than just Oracle... or is that still coming RSN?
by chulett
Wed Oct 05, 2005 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing .xls or .mdb files in a Unix directory
Replies: 18
Views: 7736

Well... perhaps a post in the FAQ Discussion forum? See if a legitimate list of things can be generated and then perhaps a FAQ could come out of it.
by chulett
Wed Oct 05, 2005 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: EBCDIC to ASCII Conversion
Replies: 3
Views: 1423

Are you sure it's not the first record? And is there anything... different... about this missing record?
by chulett
Wed Oct 05, 2005 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing file Permission through shell script by Ftp process
Replies: 14
Views: 4676

As long as the remote server allows it, there are the 'Telnet before' and 'Telnet after' commands available inside the FTP stage. Setup the 'after' session to log in and issue the chmod command.
by chulett
Wed Oct 05, 2005 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Log File Stored
Replies: 2
Views: 978

The Director logs are not files they are hashed files in the project - RT_LOGnnn where nnn is the job number of the job being logged. Search the forum, this has been discussed a bazillion times. There are routines to get the information, you can do it from the command line with 'dsjob', etc. Kim Duk...
by chulett
Wed Oct 05, 2005 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with environment setting
Replies: 1
Views: 1068

1. Agree. Sleep != Hang. Post your system specifics - operating system and number of CPUs primarily. RAM too if you know.
by chulett
Tue Oct 04, 2005 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Delimited, required_column_missing problem
Replies: 4
Views: 1310

The field will be populated based on the setting of the Missing Columns Action on the Format tab. By default, it gets mapped to a NULL, I do believe. Check the online help available from within the stage.