Search found 53125 matches

by ray.wurlod
Thu Jun 29, 2006 7:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to kill a job when DsDirector Stop does not work
Replies: 10
Views: 4258

Check for hanging database queries first, and kill them (in the database) as Ken suggests. Basically, you need to identify the cause of the "hang". Check, using the list_readu command, whether the processes involved in your job control hierarchy are holding any locks in the Repository. If they are, ...
by ray.wurlod
Thu Jun 29, 2006 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 24
Views: 8052

File modulus is greater than physical file may mean that the file has been truncated by a disk utility or that the current modulus figure has not been successfully flushed back into the file header when the file was closed. If it has been truncated, there's nought you can do save restore from backup...
by ray.wurlod
Thu Jun 29, 2006 7:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: killing a job outside datastage
Replies: 5
Views: 4479

Use the dsjob command with its -stop option.
by ray.wurlod
Thu Jun 29, 2006 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification Pass Score
Replies: 18
Views: 5581

Or maybe that's why the delivery date for Vista has been pushed out again.

I wonder if Microsoft is aware that Vista is already an IBM trademark? It's the automatic query rewrite system in Red Brick that can magically rewrite a user's query to use aggregate table(s) where appropriate.
by ray.wurlod
Thu Jun 29, 2006 5:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 24
Views: 8052

If it's repairable, you might like to attempt that. You will need to be logged in with Administrator privilege. Otherwise, restore UV_USERS from backup with DataStage shut down and after renaming the bad one, and hope like crazy that the backup is not also corrupted (you will find out soon enough). ...
by ray.wurlod
Thu Jun 29, 2006 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 24
Views: 8052

Run fixtool or uvfixfile in verify mode (that is, without the -fix option) against UV_USERS to find out what's wrong and whether it might be repairable.
by ray.wurlod
Thu Jun 29, 2006 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting with Hash parition
Replies: 1
Views: 688

Read the chapter in the Parallel Job Developer's Guide on the Join stage. It requires its inputs to be sorted (on join key columns). The partitioning algorithm is irrelevant to this requirement. The only time you would elect not to use Sort on the input link is where you are totally confident that t...
by ray.wurlod
Thu Jun 29, 2006 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error, when running
Replies: 2
Views: 923

The problem is "permission denied".

How it can be fixed is "get the permissions right".

This may be permissions in directories anywhere in the pathname.
by ray.wurlod
Thu Jun 29, 2006 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 24
Views: 8052

Get in via telnet, and find out who the DBA is. SELECT * FROM UV_USERS WHERE DBAAUTH = 'YES'; Establish a telnet session as that user, and grant connect privilege to those users. GRANT CONNECT TO user; If the original DBA user no longer exists, you may need to uninstall and re-install the DataStage ...
by ray.wurlod
Thu Jun 29, 2006 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: stored procedure - result set
Replies: 4
Views: 1047

Re: stored procedure - result set

fmartinsferreira wrote:My source is SQL Server!

Why are you surprised? :lol:
by ray.wurlod
Thu Jun 29, 2006 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype conversion
Replies: 5
Views: 1248

Precision 6 and scale 5 will allow numbers less than 10.00000. Precision 7 and scale 5 will allow numbers less than 100.00000.
by ray.wurlod
Thu Jun 29, 2006 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot run uv to unlock jobs
Replies: 5
Views: 1916

The uv executable runs as root (its setuid bit is set accordingly). Can root see this library?
by ray.wurlod
Thu Jun 29, 2006 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 Table Move
Replies: 7
Views: 1698

The real reason is that DataStage is metadata-driven, and I suspect that all 10 tables have different metadata.

You can't easily do "dynamic metadata" in DataStage.
by ray.wurlod
Thu Jun 29, 2006 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Windows XP as DataStage Server
Replies: 17
Views: 8246

You could probably implement on Linux for about the same amount of money.
by ray.wurlod
Thu Jun 29, 2006 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory setting Datastage
Replies: 8
Views: 3035

evanmaas wrote:Ray,

When use DataStage scratch buffers? What is the mean of these buffers?

Things like scratch space for Iconv() and Oconv() functions.