Search found 4605 matches

by kduke
Fri Mar 18, 2005 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Record Types in sequential files
Replies: 5
Views: 1366

I would split them up into multiple files using grep.

grep "^1" file >newfile

The ^ matches the begining of a line the 1 is your record type.
by kduke
Thu Mar 17, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: version control moved different job
Replies: 8
Views: 2567

We just had it happen. We are checking it out now.
by kduke
Thu Mar 17, 2005 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What populates the description field for imported DB tables
Replies: 4
Views: 876

Craig

Vincent has found everything else, right?
by kduke
Wed Mar 16, 2005 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: execSH Problem..plz help
Replies: 13
Views: 4296

Change it to:

Code: Select all

"cd /u02 ; ./dsclear.sh /u02/dsstg/data/DEV_PDS_MY CMS CMSPrepRefSeqFile/dummy"
by kduke
Wed Mar 16, 2005 9:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: execSH Problem..plz help
Replies: 13
Views: 4296

Quotes are killing you. You have embedded quotes. Remove them.
by kduke
Wed Mar 16, 2005 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't log in Datastage after re-cycling datastage service
Replies: 10
Views: 3796

Are you sure you have write permission to the new uvtemp directory?
by kduke
Wed Mar 16, 2005 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC from UNIX to SQL Server on a cluster
Replies: 2
Views: 646

Roy

Thanks but we have it working to ordinary SQL Server. It is the cluster which is the problem.
by kduke
Mon Mar 14, 2005 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What will IBM DataStage be called?
Replies: 4
Views: 985

I think WebSphere should be WebStage.
by kduke
Mon Mar 14, 2005 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving CATegory information
Replies: 6
Views: 1154

Here is a routine: * ----------------------------------------------------------------- * GetJobCategory(JobName) * Decription: Returns Job Category. * Written by: Kim Duke * Notes: * ----------------------------------------------------------------- Ans = '' RoutineName = "GetJobCategory...
by kduke
Mon Mar 14, 2005 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: i want to get the summary of a job..
Replies: 15
Views: 4813

Do a search on EtlStats. You can download it from ADN or my tips page. Lots of prewritten code to do this.
by kduke
Fri Mar 11, 2005 9:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Elegant way to stop a job when there's a row in a tbl?
Replies: 2
Views: 594

If it was me then I would create a job and select this into a hash file. I would write a routine to read this and return a different value if it found it.Call this routine in a sequence. Have links for each value returned. One to run the job another to sleep 15 minutes. You can do sleep in a routine.
by kduke
Fri Mar 11, 2005 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JobControl
Replies: 3
Views: 1596

Jay

You did not waste our time. We just could not see anything wrong with your code. We should of told you that.
by kduke
Fri Mar 11, 2005 9:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Command Stage
Replies: 1
Views: 704

You load in the path to the UNIX or DOS command like /bin/rm. The parameters for this command might be /data/seq/load*.txt.

You cannot load job parameters in here in version 7.1 or below. This is supposed to be fixed in 7.5.
by kduke
Thu Mar 10, 2005 9:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Very basic license question
Replies: 11
Views: 3806

Amen brother.
by kduke
Thu Mar 10, 2005 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC from UNIX to SQL Server on a cluster
Replies: 2
Views: 646

ODBC from UNIX to SQL Server on a cluster

We cannot get ODBC to connect to SQL Server on a cluster from UNIX. The server name is something like SqlServer1\SqlServer1 in the DSN for Windows. It works fine. You cannot use this in UNIX. I think that name represents ClusterName\ServerName. Not sure. We have a support ticket open. Just wondering...