Search found 6797 matches

by DSguru2B
Wed Jan 10, 2007 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while deleting a job
Replies: 25
Views: 9635

Try importing in the same project, when it says that the job already exists, want to continue, hit yes or ok. See what happens.
by DSguru2B
Wed Jan 10, 2007 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Table, Log table
Replies: 8
Views: 1694

Actually when is the log table to be populated and how? Create a delimited text file that contains all the information you need for your log table. Have a job run at the end of your process that populates this table. Coming to Error table, this table is used instead of reject file. Is this so? Plea...
by DSguru2B
Wed Jan 10, 2007 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can you do a non-utility based insert with a Teradata stage?
Replies: 7
Views: 2014

I say perform a benchmark. See how much it can handle. Nothing is better than analyzing results yourself.
by DSguru2B
Wed Jan 10, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Duplicates In Datastage Px
Replies: 9
Views: 13824

There is a way, load it into a temp database table and go wild with the sql :wink:
Jokes apart, that is a very good enhancement piece. ODBC can connect to flat files but thats limited to windows. For unix, they want $$$. Someone should come up with a cool utility that can run sql queries on a flat file.
by DSguru2B
Wed Jan 10, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rountine to return delimited list of JOBNO in project
Replies: 25
Views: 6831

I am so late. It got resolved . My share of saying; You can also do this. Ans = "" cmd="SELECT JOBNO FROM DS_JOBS WHERE NAME NOT LIKE '\\%' SUPPRESS COLUMN HEADING COUNT.SUP;" Call DSExecute("UV", cmd, JobNoList, ReturnCode) If ReturnCode<0 Then Ans=@NULL End El...
by DSguru2B
Wed Jan 10, 2007 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with timestamp
Replies: 2
Views: 825

What is your source system? If it is a database then you can do the subtraction in the sql query itself. Most databases have built in timestamp manipulation functions.
by DSguru2B
Wed Jan 10, 2007 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Duplicates In Datastage Px
Replies: 9
Views: 13824

I say remove duplicates in the select itself.
by DSguru2B
Wed Jan 10, 2007 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MF syntaxing for aliasing
Replies: 12
Views: 3294

ray.wurlod wrote:Alas, there's no ODBC stage in mainframe jobs.

Its a px job. The mainframe tables are visible to his px job.
by DSguru2B
Wed Jan 10, 2007 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiler error Transformer job
Replies: 4
Views: 1706

PeterPol wrote:APT_COMPILER: cxx
APT_LINKER: cxx


Is that the path for your compiler and linker. I dont know about you but that doesnt look correct to me.
by DSguru2B
Wed Jan 10, 2007 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Single records to multiple records.
Replies: 8
Views: 1839

How many input columns do you have and how many output? That makes a difference.
Also, if its just one column, do Cat file file file > finalFile.txt

As per your error message, try doing a cat of the file at the unix level. What do you see?
by DSguru2B
Wed Jan 10, 2007 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Kill a session
Replies: 2
Views: 1424

Search here for keywords like Unlock job.
by DSguru2B
Wed Jan 10, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to get Maximum job number
Replies: 17
Views: 4006

I thought that limit was only for unix servers. :?
by DSguru2B
Wed Jan 10, 2007 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Default Code in Change Capture
Replies: 2
Views: 767

Well then that should tell you something, that it does'nt accept characters.
by DSguru2B
Wed Jan 10, 2007 7:59 am
Forum: General
Topic: PX transformer in XP enviornment
Replies: 7
Views: 4348

Try fixing them then and see if it resolves the problem. Give the correct path for APT_COMPILER and APT_LINKER and correct options for APT_COMPILEOPT and APT_LINKOPT.
by DSguru2B
Wed Jan 10, 2007 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal field problem
Replies: 4
Views: 1468

Welcome Aboard
It is doing what you asked it to do. Converting it to Decimal(5,1). What is the datatype of this particular column, as defined in your output link. What is your output , is it a flat file or database?