Search found 15603 matches

by ArndW
Mon Aug 22, 2005 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting different number of records in sql server and ODBC
Replies: 15
Views: 2822

Shivan,

could you post the SQL statement please?
by ArndW
Mon Aug 22, 2005 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Escaping Delimiters & Newlines
Replies: 2
Views: 854

Usually you have a choice of what delimiter to use in DataStage jobs, i.e. you can make a derivation "hello world" or 'Hello world' and \Hello world\. If you have all 3 delimiters in a single string then you need to improvise, i.e. x = 'This is a "':"'":'" singly and doubly ':/ "'confusing'"/:' stri...
by ArndW
Mon Aug 22, 2005 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle parallel job stuck
Replies: 17
Views: 6645

I you remove the WHERE clause then the VIEW should work; what is happening in your case?
by ArndW
Mon Aug 22, 2005 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Select on hash file with UV stage
Replies: 3
Views: 989

Try to connect to a hash file using ODBC and use "localuv" with no user-id or password.
by ArndW
Mon Aug 22, 2005 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle parallel job stuck
Replies: 17
Views: 6645

Just for reference, how long does this SELECT take when done from SQLPlus? Also, can you not get your DBA to trace this select when issued from DataStage to see what is happening? Also, if you do a "view data" in the designer, does it correctly resolve all your parameters? Does the "view data" work ...
by ArndW
Mon Aug 22, 2005 4:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What are Filesets and Datasets and their differences?
Replies: 3
Views: 1941

There were also a couple of threads on this subject, I remember one where Lance and I talked about the differences; I did a test where I used a Lookup set and Data set and was surprised at the lack of performance differences. http://www.dsxchange.com/viewtopic.php?t=93287&highlight=lookup+dataset
by ArndW
Mon Aug 22, 2005 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prioritising DataStage Processes
Replies: 8
Views: 2847

Adamski, DataStage itself is not aware of the underlying OS's handling of processes and cannot automatically influence execution priority. The standard commands to let users change their own processes' are UNIX "nice" and "renice". You can usually only change your priorities downwards (which is what...
by ArndW
Mon Aug 22, 2005 1:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH File question
Replies: 2
Views: 1746

When you use the SELECT and LIST commands in TCL it will read the DICTionary items of the columns that you show and format them according to that item's format clause. You can override that by using the FMT {format} construct on the TCL command line: So you could write "LIST MYFILE X FMT '12L'" to f...
by ArndW
Sun Aug 21, 2005 1:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cancelling database changes
Replies: 20
Views: 4376

Your commit size is the deciding factor here. If the job fails before doing a commit any database changes will be rolled back. This is a great feature, but when doing very large inserts into database one is often forced to specify a commit size so that the rollback segment(s) in the DB aren't filled.
by ArndW
Sun Aug 21, 2005 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How the find a File in the Directory in DOS
Replies: 19
Views: 5317

Kumar,

I have 7.5.1 on AIX and couldn't find it either, perhaps Ray is referring to a Windows-only executable... especially as UNIX does have a "find".
by ArndW
Fri Aug 19, 2005 8:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copying Project folders
Replies: 5
Views: 2482

I only have one word - reinstall

sorry...
by ArndW
Fri Aug 19, 2005 8:42 am
Forum:
Topic: SMARTHEAP error
Replies: 7
Views: 3086

Dave, you just re-opened an old thread (6-months!); it might be better to create a new post with the question. The .dsx is a structured text file; any binary data is included in uuencoded form. You can use your favorite editor (notepad might not be a good choice for large files, though) to look at i...
by ArndW
Fri Aug 19, 2005 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating PX jobs using Server Job
Replies: 5
Views: 1462

Hard work, mad skillz and an intimate knowledge of the internal structures of PX jobs. And it can be all yours for only... [puts little finger in mouth]... one million dollars. (sorry) Craig - thanks, that was my first (and perhaps only) laugh of the day, the others here in the office think I've fi...
by ArndW
Fri Aug 19, 2005 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating PX jobs using Server Job
Replies: 5
Views: 1462

Naveen, What I did was to load the metadata for all the DB/2 columns and Oracle columns, then I wrote a program which read this metadata and made sure that I had a list of all conversions that were done (date/time to timestamp, date, char, varchar, integer, decimal[m,n], etc). Once I had a list of w...
by ArndW
Fri Aug 19, 2005 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How the find a File in the Directory in DOS
Replies: 19
Views: 5317

Take a good look at the "dir /s Processed.txt" command in dos, this will give you a list of the files found. You can write a Function that calls this command and gets the result in a string.