Search found 127 matches

by Sunshine2323
Mon Mar 13, 2006 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Multiple Values for a SQL Query
Replies: 9
Views: 4741

Hi, If you specify the where clause it willl only return those rows that satisfy the condition specified in the where clause. It will not return all the rows. You can try the UNION Operation Select * from EMP where EMP_ID=1001 UNION Select * from EMP Can you kindly elaborate more on your requirement...
by Sunshine2323
Thu Mar 09, 2006 2:56 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 30876

Congratulations :)
by Sunshine2323
Thu Mar 09, 2006 1:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Manipulation in a Flat file
Replies: 15
Views: 6818

Hi, I have achieved your requirement in the following way Job Design: InputFile----->TransformerA----->InterMediateFile------->TransformerB----->OutputFile InputFile: I am reading the input data in a Single Column say Field1 TransformerA Declaring 2 stage variables in TransformerA StageVar =Count(DS...
by Sunshine2323
Wed Mar 08, 2006 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ParmeterFile
Replies: 4
Views: 2581

Hi vijayindukuri,

viewtopic.php?t=84590
contains a FUNCTION GetParameterFromFile(ConfigFileName, ParamName) written by Tonystark. I have checked it, works great!

Hope this helps :)
by Sunshine2323
Wed Mar 08, 2006 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatination of Date and Time
Replies: 4
Views: 1999

StringToTimestamp(DSLink3.DateField:' ':DSLink3.TimeField,"%dd-%mm-%yyyy %hh:%nn")
by Sunshine2323
Wed Mar 08, 2006 2:11 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 30876

Hi All, I found the following info on http://www-03.ibm.com/certify/certs/iisdwsdev75.shtml Approximate # of questions: 79 Duration in minutes: 105 Required Passing Score: 75 Does this mean that we have to get 75 questions right out of 79 :shock: or we should score 75% to pass the test :roll:
by Sunshine2323
Tue Mar 07, 2006 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: implementation of type 2 scd
Replies: 3
Views: 2067

Hi nkreddy,

Search on SCD will give you tons of information.

This link will get you started
by Sunshine2323
Mon Mar 06, 2006 3:05 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 30876

Cost of certification is $175 in countries like US and $100 in emerging markets like India.


Yes, thats nice. Will try the exam out on my next trip as its 576 GBP here in the UAE.
by Sunshine2323
Mon Mar 06, 2006 2:37 am
Forum: Site/Forum
Topic: Suggestion abt the certification
Replies: 37
Views: 30876

Hi All,

The 000-415: IBM WebSphere IIS DataStage Enterprise Edition v7.5 is listed on the prometric site.

The cost of the exam is listed as 576 GBP.

The exam is very expensive as compared to other certification exams. :(
by Sunshine2323
Sat Mar 04, 2006 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a record from Tab delimited sequential file
Replies: 5
Views: 1802

Hi bharathappriyan, Your Input: Field1,Field2,Field3,Field4,Field5,Field6 1 100 111 112 113 114 2 200 211 212 213 214 3 300 311 312 313 314 4 400 411 412 413 414 5 500 511 512 513 514 6 600 611 612 613 614 Your file is messed up and you will have to correct it by getting the 4th row up to the 3rd ro...
by Sunshine2323
Sat Mar 04, 2006 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substring
Replies: 7
Views: 3106

Hi Poorna, If I understand your requirement then you want to extract a string from the input in which the location of the string to be extracted is not fixed. For this you need to know the Length of the string to be extracted and its location in the input string Declare StageVariables: StgLen :Len(E...
by Sunshine2323
Thu Mar 02, 2006 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get diff between two dates in routine
Replies: 12
Views: 8209

Hi, Try this, Date1=Iconv(InputDate1,"D-YMD[4,2,2]") Date2=Iconv(InputDate2,"D-YMD[4,2,2]") Year1 = OCONV(Date1,'DY') Year2 = OCONV(Date2,'DY') YearDifference=Year2-Year1 Month1 = OCONV(Date1,'DM') Month2 = OCONV(Date2,'DM') MonthDifference=Month2-Month1 IF MonthDifference<0 and ...
by Sunshine2323
Thu Feb 16, 2006 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Code not visible to anybody
Replies: 9
Views: 5972

Hi Anupam,

You can write the routine and then export the routine without the source code.
Then import it, in this case the code tab will be disabled.

Hopefully this helps:)
by Sunshine2323
Tue Feb 14, 2006 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: picking data from excel sheet and load data into excelsheet
Replies: 2
Views: 1868

Hi Kalyan,

Since you are working on UNIX platform you cannot read directly from excel you have to change the excel sheets to csv and then do the loading.

Also already suggested Search on keywords 'Excel' and 'UNIX' will give you tons of info.

Check this post for more info
by Sunshine2323
Mon Feb 13, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Calculator? Where is it?
Replies: 4
Views: 2084

Hi Jahnavi,

Check in the DataStage CD inside the Utilities/Unsupported folder.