Search found 6797 matches

by DSguru2B
Fri Feb 02, 2007 2:42 pm
Forum: Site/Forum
Topic: Getting logged out during session
Replies: 17
Views: 9495

I am using IE. So far so good. I only experienced it yesterday.
by DSguru2B
Fri Feb 02, 2007 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: undo rebuild repository indices
Replies: 3
Views: 1289

I highly doubt that. Why, what happened?
by DSguru2B
Fri Feb 02, 2007 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compress Stage
Replies: 2
Views: 788

Search for Compress Stage. Its usage has been discussed before.
by DSguru2B
Fri Feb 02, 2007 1:33 pm
Forum: General
Topic: Folder stage and network folder
Replies: 18
Views: 5618

cesareraoss wrote:It works only with \\servername\folder. It doesn't work with g:\Tt

I had a hunch. Thanks for confirming it.
by DSguru2B
Fri Feb 02, 2007 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

UNAVAILABLE would mean that the memory segment was not released properly or in C terms, free'd. Next time you have that nasty dbx zombie thread out there, run PORT.STATUS and check for UNAVAILABLE. We are looking for a trend here. Whether the ids are the same that are holding UNAVAILABLE and dbx thr...
by DSguru2B
Fri Feb 02, 2007 11:30 am
Forum: General
Topic: DataStage and the DST change
Replies: 11
Views: 9575

Re: DataStage and the DST change

Seeing as how we're not doing anytime timezone specific and get anything time related from the O/S I'm assuming "we" are out of the loop on this. If thats the case then I am guessing it shouldnt be a problem. The only thing would be your scheduling criteria but thats out of your hands in into the s...
by DSguru2B
Fri Feb 02, 2007 10:11 am
Forum: General
Topic: Folder stage and network folder
Replies: 18
Views: 5618

What username do you use to log into DataStage? That id should have access to the shared folder.
by DSguru2B
Fri Feb 02, 2007 10:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

Try that command in the adminstrator. The PORT.STATUS command.
by DSguru2B
Fri Feb 02, 2007 9:56 am
Forum: General
Topic: DSN for SQL SERVER2000
Replies: 1
Views: 921

Welcome Aboard :)
Make full use of the website's search facility. This topic has been covered a lot before. You basically need to edit two files, uvodbc.config and .odbc.ini. Search on thier names and you will get your answer.
by DSguru2B
Fri Feb 02, 2007 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning with the Change capture
Replies: 7
Views: 2691

:!: Try searching on keywords "in transfer from "beforeRec" to "outputRec""
by DSguru2B
Fri Feb 02, 2007 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while using Fmt function
Replies: 5
Views: 1403

Try this If IsNull(DSLink3.Field001) Then 000000000000.00000 Else If Substrings(DSLink3.Field001,1,1)="-" Then "-": FMT(DSLink3.Field001[2,Len(input.key1)-1],'18"0"R5') Else Fmt(DSLink3.Field001,'18"0"R5')
by DSguru2B
Fri Feb 02, 2007 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert ASCII CHAR into ASCII BINARY format
Replies: 13
Views: 4130

Hi DSguru2B Did you get a chance to write the code, I am not familier with C. Thank you, gvstr Just got a little busy with stuff. Here is what I could come up with. I tested with some sample data. This function takes in two parameters. str is the input value which you want to convert. size is the s...
by DSguru2B
Fri Feb 02, 2007 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

Ok, if you have stopped and started the engine with that command then you can definately get into the uv prompt.
What happens if you only type

Code: Select all

$DSHOME/bin/uv
by DSguru2B
Fri Feb 02, 2007 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

Try that command in your DataStage Admin. To fix your error, try this post.
by DSguru2B
Fri Feb 02, 2007 8:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Get The status of the job
Replies: 9
Views: 3323

Which means the job is still running Equ DSJS.RUNNING To 0 ;* This is the only status that means the job is actually running Equ DSJS.RUNOK To 1 ;* Job finished a normal run with no warnings Equ DSJS.RUNWARN To 2 ;* Job finished a normal run with warnings Equ DSJS.RUNFAILED To 3 ;* Job finished a no...