Search found 212 matches

by kashif007
Sat Aug 19, 2006 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert/update
Replies: 2
Views: 1065

insert/update

hi guys i have job to do. i dont know how am i suppose to do it. i have a job in which i have a sequatial file which has a file. now it load's the data to a teradata multiload. i have to modify that job into insert and update operation. splitting into two. means insert when when data not found and u...
by kashif007
Sat Aug 19, 2006 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

actually the fast export was working fine the only problem was the sql query which had a trim in front of it and the date which was in the correct format already in the DDL so i just made changes to that and what you had told me about null values then it worked. thanks again What was the isssue? If ...
by kashif007
Fri Aug 18, 2006 12:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

thanks kriss it works now thanks for your help Are you still getting the same error? As far as I know, the first error usually occurs when a fixed-width file is present. Set the delimiter to comma and quote to double. You are on Windows, so set record delimiter to DOS format. In the field default at...
by kashif007
Fri Aug 18, 2006 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

well ok this is what i have in the format of the seq file

record level => record delimiter : UNIX newline
field defaults => delimiter = none

i dont have fixed length field length
so can u suggest me what do i do. i tried with what u had said but still its not working.
by kashif007
Thu Aug 17, 2006 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

Re: data not exported

hi kris can our please tell what exactly the code i should be using. this is what i had coded but it is not working If IsNull(i/p column) then "" else i/pcolumn i even tried to change the data type to char from date, but its not working. i dont know whats the problem. the fast export has s...
by kashif007
Thu Aug 17, 2006 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

hi kris my source is using teradata multiload that reads a table from teradata database and the target is actually three of them using a transfomer for all three. so the target is lookup file stage, sequential file stage which has a copy of the data in lookup and finally a dataset that will be used ...
by kashif007
Thu Aug 17, 2006 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data not exported
Replies: 10
Views: 2822

data not exported

hi every budy i am new to datastage. i am using teradata multiload to export a table from the teradata database. i have loaded the metadata, specified the SQL to be execuded and i think defined all the properties.i am using a transformer followed by a lookup and a sequential file. the error which i ...
by kashif007
Thu Aug 17, 2006 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delta processing
Replies: 11
Views: 3851

u r absolutely right doma thats what i need to do, although i tried to do so with cdc but i guess the metadata is not matching. so what i plan to do is get each teradata into a lookup and then i can compare in a transformer and do inserts and update. i still didnt do it. but thats what i planned. I'...
by kashif007
Wed Aug 16, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delta processing
Replies: 11
Views: 3851

i have two date four date column, it holds the business information. i have to modify two of them, one setting it to system date and one to null value. i can even use lookup also i guess. but i dont know whether it will work properly. the change capture does not read the data from the teradata EE.
by kashif007
Wed Aug 16, 2006 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delta processing
Replies: 11
Views: 3851

sorry about that i told i was in a hurry

its a comparision between two tables. i am using a px environment and the source and target database is teradata.
by kashif007
Wed Aug 16, 2006 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delta processing
Replies: 11
Views: 3851

delta processing

I NEED TO KNOW HOW DO I DO THIS NEED TO DEVELOP A DELTA PROCESS THAT WILL DETERMINE THE DIFFRENCE BY COMPARING THE DATA FROM THE FILE RECIEVED FROM ONE TABLE WHAT IS CURRENTLY STORED IN ANOTHER TABLE. ALL THE ATTRIBUTES RECIEVED SHOULD BE COMPARED. THE UNMATCHED RECORD SHOULD BE UPDATED OR UPSERTED ...
by kashif007
Sun Aug 06, 2006 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIT/UAT
Replies: 4
Views: 1969

thanks kumar
[
quote="kumar_s"]Gain more idea about software testing here. http://en.wikipedia.org/wiki/Software_testing[/quote]
by kashif007
Sat Aug 05, 2006 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIT/UAT
Replies: 4
Views: 1969

SIT/UAT

hi guys did any one of u did any kind of system integration testing and user acceptance testing on a real data, not a dummy data. if anyone caould please tell me how does it work and what is the format of the procedure. i wanna know every thing about SiT/UAT. please if some can post me. i shall be v...
by kashif007
Thu Aug 03, 2006 10:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: non delimiter file
Replies: 13
Views: 5427

some times there is the format of the file which does not show propely
so its better to take tail than head
kumar_s wrote:head -40 should give you first 40lines, tail -40 should give your last 40 lines, apart from this, may I know what difference made your job to run fine?
by kashif007
Thu Aug 03, 2006 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: non delimiter file
Replies: 13
Views: 5427

right guys i made it work now i was reading the records from two files on unix server using the comman $head -40 filename1 filename2 > filename3 $head -40 filename4 filename5 > filename6 now the format of the data was not saved properly that why delimiter error occured so i tried "tail" in...