Search found 197 matches

by DS_FocusGroup
Sat Jul 11, 2009 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling a Job every Two hours?
Replies: 4
Views: 2209

thanks i like the trick ! .. and yes fingers crossed then :D
by DS_FocusGroup
Sat Jul 11, 2009 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling a Job every Two hours?
Replies: 4
Views: 2209

Scheduling a Job every Two hours?

Can someone please let me know how to schedule a job in datastage on an hourly basis? i.e. run a particular job everyday but every two hours.

Thanks
by DS_FocusGroup
Wed Apr 08, 2009 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 6254

yes the awk is accesible from DS as i am running another awk in some job. the problem i see is that its putting extra single quotes around the '"{if (NF==3) print $0}"' . If i use double quotes it puts extra single quotes around :roll: Not sure why ? as i have tried without any quotes but ...
by DS_FocusGroup
Tue Apr 07, 2009 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 6254

Command failed to execute - Missing field separator '"{if (NF==3) print $0}"' is not recognized as an internal or external command, operable program or batch file.

Thanks
by DS_FocusGroup
Tue Apr 07, 2009 4:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 6254

on windows.........
by DS_FocusGroup
Tue Apr 07, 2009 2:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 6254

Error Running AWK

Hi,

I am trying to run an awk command in datastage through command stage. The command run fines if i run it on DOS command prompt but when i run it in DS its giving me an error. Its a pipe delimited file

Code: Select all


awk -F "|"  '{if (NF==3) print $0}' source file > output_file
Thanks.
by DS_FocusGroup
Sun Feb 08, 2009 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 7524
Replies: 4
Views: 2771

the NLS mapping had to be set to project default!!
by DS_FocusGroup
Sun Feb 08, 2009 4:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 7524
Replies: 4
Views: 2771

i have also looked in the RT_BP2927 file of the job. nothing there on line 122.
by DS_FocusGroup
Sun Feb 08, 2009 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 7524
Replies: 4
Views: 2771

Phantom 7524

OK i have looked into the background of what a phantom error is and tried a few solutions posted on this site but i am still getting these in my teradata load jobs (Multiload). DataStage Job 2927 Phantom 7524 Program "DSP.Open": Line 122, Exception raised in GCI subroutine: Access violatio...
by DS_FocusGroup
Fri Nov 21, 2008 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warnings in TPT
Replies: 5
Views: 3319

OK i guess we cannot do

Code: Select all

SPECIFICATION= KEEP NEW_A= OLD_A 
so i dont know now whats wrong with it. as i have 29 columns in the source file before the modify stage and in the modify stage all i am doing is renaming these columns. All the new column names are present in the output definition
by DS_FocusGroup
Fri Nov 21, 2008 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warnings in TPT
Replies: 5
Views: 3319

Ok now i have done something like this in the modify stage:


SPECIFICATION= KEEP NEW_A= OLD_A
SPECIFICATION= KEEP NEW_B= OLD_B

i am getting the following error

Code: Select all

Expected ';' or ','; got: "="; input: 
KEEP NEW_A=OLD_A ;
;
KEEP NEW_B= OLD_B;
;
:roll:
by DS_FocusGroup
Fri Nov 21, 2008 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warnings in TPT
Replies: 5
Views: 3319

i will have a look into this. although i doubt this can be a problem as i have just changed the database stage from DB2 to teradata and the rest of the design is the same which was functional.

thanks though
by DS_FocusGroup
Thu Nov 20, 2008 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warnings in TPT
Replies: 5
Views: 3319

Lookup warnings in TPT

i am getting several warnings like this while performing sparse lookup from teradata using TPT. AcctArrg_Lkup3: Schema field A in input data set 0 not present in design time information. Extended field properties for this field will not be available. AcctArrg_Lkup3: When checking operator: The modif...
by DS_FocusGroup
Wed Nov 19, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Rejected rows along with its description in rej file
Replies: 5
Views: 1728

i think you need to check first line columns names to true so you can properly read the records. :roll: and if you need to capture the rejects from Db2 i think you can drag a reject link out of it
by DS_FocusGroup
Tue Nov 04, 2008 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Display Problems
Replies: 3
Views: 2085

Display Problems

I am fetching rows from the database and writing it to a dataset with copy stage in the middle. the SQL select gives the following result Column1 Column2 997000045147278 223319.43 in the dataset when i view the data its shown like: Column1 Column2 997000045147278 0000000223319.43 zeros are being add...