Search found 6797 matches

by DSguru2B
Mon Mar 13, 2006 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: not able to open the job
Replies: 10
Views: 3791

This happens due to the fact that you did not close the job properly via the designer. According to the server, that job is still accessed by someone else because it did not recieve a proper job close. All you need to do is go to the director, go to Job in the tool bar and choose "Cleanup resou...
by DSguru2B
Mon Mar 13, 2006 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting next key value based on highest key in target table?
Replies: 4
Views: 1282

Or you can also do it in the transformer stage. Get the max from the table, store it in a hash file and pass that value into the tranformer. Specify two stage variables var1 = IF (in.MAX=Var2) THEN Var1+1 ELSE in.MAX +1 var2 = in.MAX your key value will be var1 in the above code. i hope this helps c...
by DSguru2B
Mon Mar 13, 2006 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for DW connection before running the job sequences
Replies: 9
Views: 3234

A job to check the connections can be made by the command you had mentioned
by DSguru2B
Mon Mar 13, 2006 10:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in using StoredProcedure
Replies: 4
Views: 1859

What does your stored procedure do? As said by Craig, you have Stored Procedure stage to call a stored procedure. The stage would require inputs and if you give an output from that stage you will need to provide the output columns. So that depends on the functionality of your stored proc. If you don...
by DSguru2B
Fri Mar 10, 2006 4:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Calculation to get the next quarter based on Input Date
Replies: 17
Views: 5982

You have to pay to see the Premium content.
by DSguru2B
Fri Mar 10, 2006 11:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Calculation to get the next quarter based on Input Date
Replies: 17
Views: 5982

OOps :oops:
i did not pay attention to that. i completely forgot weather it was a server or a px job.
Sorry Tito.
If your problem doesnt get resolved using stage variables, use the logic in my routine and transform that into a px routine. it will work.
Sorry once again guyz
by DSguru2B
Fri Mar 10, 2006 11:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Calculation to get the next quarter based on Input Date
Replies: 17
Views: 5982

Tito, I took out some time to work on your problem. I came up with a routine. I tested it with all the scenarios you listed in your first post. It works. Try it out and let me know InMonth = Arg1 ActMonth = Arg2 InMonth_Qtr1 = InMonth + 3 InMonth_Qtr2 = InMonth + 6 InMonth_Qtr3 = InMonth + 9 InMonth...
by DSguru2B
Fri Mar 10, 2006 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized Argument
Replies: 5
Views: 11745

Got it Andrw. It was my mistake .. thanks anyways
by DSguru2B
Fri Mar 10, 2006 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized Argument
Replies: 5
Views: 11745

Its nothing big.. A simple select
select * from table where tocurrency='usd'.
The only place where the '&' is present in the password.
by DSguru2B
Fri Mar 10, 2006 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized Argument
Replies: 5
Views: 11745

Unrecognized Argument

I am loading from SQL server using ODBC EE stage and using it for Change Capture and the job is aborting saying " Unrecognized Argument : &"
I tried loading it into a peak stage using ODBC EE and Dynamic RDBMS stage as well. Straigt loads are working fine.
Any thoughts on this?
by DSguru2B
Fri Mar 10, 2006 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable length of columns in text file
Replies: 5
Views: 1921

then your file is of fixed width format. do this, while importing the meta data, choose the fixed width option and in the columns, specify the column name and in the length specify the ( for ID specify 2, for name specify 10 and so on...). this should work, provided your file is truely fixed width. ...
by DSguru2B
Fri Mar 10, 2006 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Manipulating timestamp
Replies: 2
Views: 1163

Manipulating timestamp

I have a timestamp in the format Mar 10 2006.
I want to convert this into 200603 ( ie: YYYYMM).
Any suggestions?
by DSguru2B
Fri Mar 10, 2006 9:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable length of columns in text file
Replies: 5
Views: 1921

open the file in a notepad, what delimitter do you see? do you even see any delimiter?
by DSguru2B
Fri Mar 10, 2006 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email Problems
Replies: 2
Views: 1261

Re: Email Problems

message = "" sender = "From:Data_Staqe_Dwetl2@appliedcard.com\n" message = message:"This is a test\n" Probably this is the piece you are getting your warning. I think you are Concatinating the message with " This is a test\n". Try this instead. message = &quo...
by DSguru2B
Thu Mar 09, 2006 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning when I use lookup fileset
Replies: 2
Views: 1370

Check the nullability of the columns. Sometimes if one is nullable and the other is not, then usually warnings such as this are given too.