Search found 42189 matches

by chulett
Fri Jun 07, 2013 12:25 pm
Forum: General
Topic: using dsjob with parameters
Replies: 14
Views: 4473

Diego, it will work if done properly. You build the string with the values embedded in it. At this point we'd need to see exactly what you are doing to be able to help.
by chulett
Fri Jun 07, 2013 10:20 am
Forum: General
Topic: FTP Stage changes behavoir under different ports
Replies: 1
Views: 1528

Re: FTP Stage changes behavoir under different ports

To me it seems like DataStage should always try to use the FTP protocol independent of what port it needs to communicate over. Sorry but this isn't a DataStage issue, just a lack of understanding of the role the port number plays in the process. You can't just change it willy-nilly as they are part...
by chulett
Fri Jun 07, 2013 10:14 am
Forum: General
Topic: using dsjob with parameters
Replies: 14
Views: 4473

You have to build the string and substitute in the values yourself:

Command = "dsjob -run -param Parm1=" : [Col1_Of_table] : " -param Parm2 = " : [Col2_Of_table] : " etc etc etc".
by chulett
Fri Jun 07, 2013 10:08 am
Forum: General
Topic: DataStage Sequence Job -- UserVariable to Activity
Replies: 7
Views: 12465

Good that you've got this working. I honestly don't think you really need UserVariable stages here but don't have any way to play around and confirm/deny.
by chulett
Fri Jun 07, 2013 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

Ok... from what I recall there is a 'metadata validation' check step where it goes back to the source table and verifies the metadata you're using. The message implies it is going back and seeing COL1 as CHAR(38) in the source table. If that's not true, meaning the actual column is a CHAR(20) then y...
by chulett
Fri Jun 07, 2013 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

"Previous column of the table" - sorry but what the heck does that mean? :?

If it is "really 20" but your metadata shows 38, fix the metadata. If something else, please clarify.
by chulett
Fri Jun 07, 2013 7:38 am
Forum: General
Topic: Using "Oracle Instant Client" with Datastage 8.1
Replies: 3
Views: 1260

No, just pointing out that an exact search for 'Oracle instant client' found 4 posts here where it was being used and discussed.
by chulett
Fri Jun 07, 2013 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

No, not misunderstood at all... just giving you a work-around. Everything is not "all right" as you could lose data as noted in the warning - 8.1 was broken because it did not warn you about the truncation, they fixed that in the 8.7 release. And I thought we were talking about one column ...
by chulett
Fri Jun 07, 2013 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum number of bytes in a record in flat file
Replies: 10
Views: 2806

The "Win" part of that name should tell you it's not happening "on the server itself". :wink: What I'm asking is are other processes consuming the file and having issues? I just want make sure we're solving a real problem here and not a perceived one. I'm also curious about the '...
by chulett
Fri Jun 07, 2013 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

Well, you could always lie. :wink:

Alter the source metadata for that field to show a size of 20 and (optionally) substring the field in the SQL.
by chulett
Fri Jun 07, 2013 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum number of bytes in a record in flat file
Replies: 10
Views: 2806

So are you having an actual problem with the file on the server or just after you move it over to your PC to look at it?
by chulett
Fri Jun 07, 2013 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing duplicates on all columns except one.
Replies: 5
Views: 1700

State your output requirements in words. How do you pick the survivor? Right now just looks like Aggregation to me but I want to hear the rules.
by chulett
Fri Jun 07, 2013 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

OK. Is this truly a Server job? From what I recall that rules out using a message handler to demote it.
by chulett
Fri Jun 07, 2013 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The size specified for column
Replies: 13
Views: 5141

Do you still get the warning if you substring while moving the data from one to the other?
by chulett
Thu Jun 06, 2013 8:26 pm
Forum: General
Topic: DataStage Sequence Job -- UserVariable to Activity
Replies: 7
Views: 12465

I don't see a need for the UserVariable stage here. Typical use would be to establish values once at the beginning of a Sequence and then downstream activities would have access to them. Prime example would be a looping sequence job. I'm not quite sure I follow your ultimate design here. Triggers ca...