Search found 15603 matches

by ArndW
Wed Aug 29, 2007 10:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

Now I have no idea of what you really want to do. Could you perhaps explain with a small example of what you want done?
by ArndW
Wed Aug 29, 2007 10:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sudden degradation in performance of job collecting logs
Replies: 3
Views: 1019

Start off with a simple test - go to the project directory and list the files ordered by descending size. The data for the most common file type, DYNAMIC, is contained in a DATA.30 and OVER.30 file inside a directory which is the hashed file name. So, are there very large log files? If yes, you can ...
by ArndW
Wed Aug 29, 2007 9:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

Make two separate links go to two DB2 stages. Make the DELETE command commit immediately and order it so it executes before the normal insert link.
by ArndW
Wed Aug 29, 2007 7:33 pm
Forum: General
Topic: DataStage Reference Manuals
Replies: 4
Views: 2062

Thanks, I was too lazy (and my internet connection to slow) to get that again and add it to the post.
by ArndW
Wed Aug 29, 2007 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to know that inputdata is varchar
Replies: 6
Views: 1636

Code: Select all

IsValid('int32',In.Column)
would be use to see if the column "In.Column" is a valid 32 bit integer.
by ArndW
Wed Aug 29, 2007 6:37 pm
Forum: General
Topic: DataStage Reference Manuals
Replies: 4
Views: 2062

Rex, If you are looking at the SQL used within DataStage to access hashed files then you are out of luck looking for it in the DataStage documentation. You can, however, download the manuals from the UniVerse documentation on IBM's site and be fairly certain that most commands will work since the tw...
by ArndW
Wed Aug 29, 2007 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage handling nulls and change of datatype
Replies: 7
Views: 3475

When you get a message to the effect that the column is already bound look at your RCP status for that stage - it is probably turned on and you have re-assigned that column name.
by ArndW
Wed Aug 29, 2007 3:19 pm
Forum: General
Topic: Getting file from mainframe server
Replies: 3
Views: 1476

You have two main ways of getting the file - using FTP from your system or using DataStage FTP. In the former, you should google your OS name and "ftp script" because each flavor of UNIX is a bit different in how it allows scripting the commands and you might find an example for your mainframe OS co...
by ArndW
Wed Aug 29, 2007 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchestrate shema definition import error
Replies: 3
Views: 1126

If DataStage cannot output to a text file, which is what this temporary shell script is, then it is almost certainly because your userid has insufficient access (specifically "w"rite access) to that directory.
by ArndW
Wed Aug 29, 2007 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit settings
Replies: 0
Views: 644

Oracle commit settings

It seems that the Oracle enterprise stage only allows for setting the row or time based commit frequency at a job level. I have a job where I would like to set the main data output, which uses the write method, to as long a time and as high a row count as possible (using the 2 oracle environment var...
by ArndW
Wed Aug 29, 2007 12:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COLUMN FORMAT ERROR
Replies: 1
Views: 620

Hello and welcome to DSXchange. Before posting, it is wise to read this FAQ , which also explains how to use the search facility. When you do so, you'll see that this is a common problem or question that most PX job developers will have encountered - the ones that haven't seen this warning just have...
by ArndW
Tue Aug 28, 2007 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage routine for field validation.
Replies: 6
Views: 2468

I should be more specific. You should write a DataStage job to read the file (defined as one big column without deliimters) and then, in a PX or BASIC transform stage, apply the logic discussed earlier in this thread. There is no need to write a routine to do this.
by ArndW
Tue Aug 28, 2007 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage routine for field validation.
Replies: 6
Views: 2468

What? Use a DataStage job to open and read the file!
by ArndW
Tue Aug 28, 2007 11:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mod 10 Check Routine
Replies: 9
Views: 2778

Well, since you are a charter member, here are my numbers:
by ArndW
Tue Aug 28, 2007 10:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Please help StringToTimestamp
Replies: 5
Views: 1889

Code: Select all

StringToTimeStamp(In.Col,'%yyyy%mm%dd%hh%nn%ss')
and Bob's your uncle as some Yorkshire friends of mine are prone to saying.