Search found 4992 matches

by kcbland
Tue Jul 11, 2006 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designer freezing when opening OCI stage
Replies: 12
Views: 5754

Determine if it's server or client related. If other PC's have the same problem - it's server. If it's your PC only, determine if it's project related or global. Let us know which.

Now go and release all the job locks left on the jobs you had open. :wink:
by kcbland
Tue Jul 11, 2006 5:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 12659

whooaa dude, that is far out

But absolutely true.
by kcbland
Tue Jul 11, 2006 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gmt data
Replies: 10
Views: 1967

Krazykoolrohit wrote:use the iconv and oconv functions to convert. check datastage help for usage


No. ICONV and OCONV work on integer days, not seconds. The time conversions don't include date components. You must write a custom function.
by kcbland
Tue Jul 11, 2006 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gmt data
Replies: 10
Views: 1967

I suppose you could take your EPOCH value, divide it by 86400 (the number of seconds in a day) to get the whole number of days in the date. The DS BASIC internal date starts at 1 on January 1, 1968. So, you can work out the equation necessary to compute the date value you need. Then, take the number...
by kcbland
Tue Jul 11, 2006 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gmt data
Replies: 10
Views: 1967

No, your date is EPOCH, the number of seconds since Jan 1, 1970. I don't know if we've got one of those.
by kcbland
Tue Jul 11, 2006 2:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gmt data
Replies: 10
Views: 1967

Look at the final message on this post from DSGuru2B:

http://www.dsxchange.com/viewtopic.php? ... t=add+date
by kcbland
Tue Jul 11, 2006 2:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gmt data
Replies: 10
Views: 1967

You mean Greenwich Mean Time? Are you asking how to add X hours to a date time to make it local to your standard? Write a DS function, search the forum, there's lots of examples.
by kcbland
Tue Jul 11, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI and Decimal type
Replies: 16
Views: 2634

Hey, around version 5 if you spooled the same value, say 123.456, to two identical columns in a Sequential file, one with scale of 3 and the other scale of 0, you would get the same value (123.456). However, if you added 0 to the scale 0 column, you'd get 123. Only performing a math operation caused...
by kcbland
Tue Jul 11, 2006 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Supress extra Carriage returns
Replies: 21
Views: 4172

Folks, the issue is that a text block contains trailing CR/LF that the poster wishs "trimmed". It has nothing to do with anything other than prettying up a column. As a piece of etiquette, it probably behooves anyone responding to a poster to read every reply, not just the last one. Then, replies wi...
by kcbland
Tue Jul 11, 2006 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: phantom errors
Replies: 2
Views: 1265

Phantom errors occur when DS BASIC errors send messges to stdout, and since Server jobs don't have a screen component those messages are caught and return as "phantom" errors. Phantom is just the name of the background program used in DS Server to manage a task. The most common messages are variable...
by kcbland
Tue Jul 11, 2006 12:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server data type not supporte
Replies: 5
Views: 1650

Welcome aboard. What data types are in your target table that aren't CHAR, VARCHAR, INTEGER, DATE, TIMESTAMP?
by kcbland
Tue Jul 11, 2006 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs not running
Replies: 5
Views: 1107

Not a single job can run? Try creating just a Batch job from Director to do nothing. How about "CALL DSLogInfo("Hello World", "Msg"). If that job can't run from Director you have something seriously wrong. Try each project to see if it's a project or server-wide issue. If that job works, we're shoot...
by kcbland
Tue Jul 11, 2006 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conflict of resources by two or more jobs
Replies: 1
Views: 437

MODERATOR: THIS IS A DUPLICATE POST, PLEASE REMOVE
by kcbland
Tue Jul 11, 2006 12:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conflict of resources by two or more jobs
Replies: 3
Views: 764

1. Job scheduling to avoid conflicts 2. Locking mechanisms (such as lock a row in a table for update during the duration of the Routine call, if another job calls the routine it will stall until it can get the lock) Why are there issues with the same file? Are you writing to a file in a Routine? Hop...
by kcbland
Tue Jul 11, 2006 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cleaning up project
Replies: 13
Views: 3625

Since you're Server, you don't have PX datasets. You will want to purge job logs and remove errant/retire hashed files and sequential files created within your project.