Search found 4992 matches

by kcbland
Mon Dec 12, 2005 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Fails In Between
Replies: 2
Views: 755

The API DSGetJobInfo documented in your manual will tell you the state of a job when used appropriately. As your your creation of jobstreams and restartability, you'll need to learn more about restartability in Sequencers. As for partially loaded data, you're going to need to look at your loading st...
by kcbland
Mon Dec 12, 2005 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Enterprise Stage
Replies: 2
Views: 1366

Stop messing with this stage. This stage is for reading/writing a file in a remote directory. To move files use command line FTP. The mget option will retrieve multiple files based on a wildcard, turning off prompting will ease the transfer. A simple shell script can make this process reusable.
by kcbland
Sun Dec 11, 2005 9:02 am
Forum: Data Integration
Topic: fact table
Replies: 9
Views: 15799

pump307 appears to be a robot spamming content on random postings. Better boot that user off.
by kcbland
Sun Dec 11, 2005 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can Datastage be automated thru java
Replies: 5
Views: 1610

If you know how to execute an operating system command from inside a java script, then you have the ability to execute the dsjob command in the DS engine/bin directory. What other information are you seeking?
by kcbland
Sun Dec 11, 2005 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem resolved
Replies: 4
Views: 2178

Re: Calling shell scripts in Execute Command Activity. Urgen

Can some one guide me in this regard please. Its very urgent. We're sorry your problems are urgent. Please don't ask for urgent answers again in the future, as that usually means they won't be answered immediately. Your problem is that you lack the understanding of how unix command line works. This...
by kcbland
Sat Dec 10, 2005 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum stages in a job
Replies: 15
Views: 5139

Some things to consider when opting for the "all-in-one" jobs for both PX and Server: 1. Large design size means importing/exporting the job takes longer - produces a larger dsx file for a single job. 2. Large designs means that more logic is within a single job - only one developer has write access...
by kcbland
Sat Dec 10, 2005 9:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can Datastage be automated thru java
Replies: 5
Views: 1610

By java means you don't want to use the dsjob command line executable to start, monitor, and extra log and link metadata? You prefer to write your own version in java? If you understand the APIs available, what would that gain you over doing shell command executions of dsjob?
by kcbland
Sat Dec 10, 2005 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exception Handler
Replies: 2
Views: 789

The execution hander thread is an independent stream of tasks to do when something goes wrong. By your shown design, there's nothing to "do", the job starts with the exception handler stage. Your job should start with a stage that does something. Detach your exception handler and set it somewhere on...
by kcbland
Sat Dec 10, 2005 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI 9i stage error
Replies: 1
Views: 546

It the message indicates that the job had an "Access violation. ", probably with the sequential text file. Any chance you had it open in Notepad or something? Even just have Windoze Explorer focused on a file induces a operating system lock on the file, which will cause an access violation with Data...
by kcbland
Fri Dec 09, 2005 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum stages in a job
Replies: 15
Views: 5139

Forget about using DataStage for a moment. In the world of writing computer programs, is it "best" to have a single 5000 line top-down program, or a collection of small modular routines, methods, and procedures that may reach 8000 lines of code? Best - define it. Best design to maintain? Best design...
by kcbland
Thu Dec 08, 2005 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS auto purge not working
Replies: 5
Views: 1042

Only when a job runs does the log get purged. If you only run a job once a month, but its purge is daily, it will only purge when the job runs. There's no "purge" daemon to clean up logs daily - it's the responsibility of the job to maintain its own log. Setting the project purge setting means that ...
by kcbland
Thu Dec 08, 2005 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status as running
Replies: 1
Views: 479

Instead of your job design, use a Batch style job to call DS routines directly, it's much more elegant. To call any subroutine, just use: Call DSU.yoursubroutinename(InputArg, DSJ.ERRFATAL) You can put calls to DSLogInfo before and after calling your routine to error trap it. You also can do...
by kcbland
Thu Dec 08, 2005 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJob functon
Replies: 8
Views: 2760

You can do this with a COMMON variable accessed using a custom FUNCTION, but you MUST disable row buffering, remove IPC stages, and disable read/writecaching for your premise to work no matter what. Another method would be to write the value to a single row hash file on the last transformer and refe...
by kcbland
Wed Dec 07, 2005 10:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using a job parameter for DB2 user password
Replies: 1
Views: 461

You are using # around the job parameter, like #InstancePassword#? If you use View Data on the stage, it should prompt you to enter parameters utilized.
by kcbland
Wed Dec 07, 2005 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate INROWNUM
Replies: 5
Views: 1376

My 2 cents contribution, in 7+ years with DS this has happened to me only because of design error, never because of DS. Are you overwriting the existing file or appending to the existing file? Any stage variable/row rollup occurring?