some of the warnings that we suppress and are not harmful

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
sendmk
Charter Member
Charter Member
Posts: 136
Joined: Mon Oct 03, 2005 5:02 am

some of the warnings that we suppress and are not harmful

Post by sendmk »

Can anyone give me some of the warnings that we suppress and that are not harmful.

thx
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

I can't think of any warnings in Server that need to be suppressed and are not harmful. PX jobs are different, but one can't just give a list since each warning is potentially harmful if not handled correctly.

Again, server jobs should be designed to not issue any warnings.
sendmk
Charter Member
Charter Member
Posts: 136
Joined: Mon Oct 03, 2005 5:02 am

Post by sendmk »

i agree to you andrw, i need a few most common ones atleast for documentation.
kcbland
Participant
Posts: 5208
Joined: Wed Jan 15, 2003 8:56 am
Location: Lutz, FL
Contact:

Post by kcbland »

A purposeful reject link will generate a yellow warning message in the job log if the row count on the reject link is non-zero. Other than that, warning messages on Server jobs tell you your metadata is wrong, or your job has spewed information into the phantom capture file indicating non-numeric values in calculations or such errors.
Kenneth Bland

Rank: Sempai
Belt: First degree black
Fight name: Captain Hook
Signature knockout: right upper cut followed by left hook
Signature submission: Crucifix combined with leg triangle
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

You mean like "Character string truncation" warnings? (this is a harmful one) or "Warning: column name does not match SQL name!" (which might be harmful)?

You can enter TCL or use the ADMIN tool and do a "SELECT * FROM DS_RESENU;" (or "LIST DS_RESENU" for non-sql type query) to get a list of the messages that can come out of DataStage.
sendmk
Charter Member
Charter Member
Posts: 136
Joined: Mon Oct 03, 2005 5:02 am

Post by sendmk »

Can anyone tell me where i have enter the SELECT * FROM DS_RESENU etc, TCL etc
rasi
Participant
Posts: 464
Joined: Fri Oct 25, 2002 1:33 am
Location: Australia, Sydney

Post by rasi »

You can use your datastage adminstrator to run your command.
SELECT * FROM DS_RESENU
Under the project tab click the command button. Inside you can run your query.
Regards
Siva

Listening to the Learned

"The most precious wealth is the wealth acquired by the ear Indeed, of all wealth that wealth is the crown." - Thirukural By Thiruvalluvar
balajisr
Charter Member
Charter Member
Posts: 785
Joined: Thu Jul 28, 2005 8:58 am

Post by balajisr »

rasi wrote:You can use your datastage adminstrator to run your command.
SELECT * FROM DS_RESENU
Under the project tab click the command button. Inside you can run your query.

I can execute the command "SELECT * from DS_RESENU;" from the administrator but not from unix. But i can execute commands like LISTV,LISTS etc.. from unix

I had even tried executing "select * from DS_JOBS;" both from administrator and from Unix. It is working fine from the administrator but not from unix.

The error message i get when i execute from unix is:
"Table DS_RESENU does not exist"
"TABLE DS_JOBS does not exist"

Am i making any basic mistake?

--Balaji S.R
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

You first need to change to your project from the master account by using a "LOGTO {projectname}" command within TCL.
balajisr
Charter Member
Charter Member
Posts: 785
Joined: Thu Jul 28, 2005 8:58 am

Post by balajisr »

ArndW wrote:You first need to change to your project from the master account by using a "LOGTO {projectname}" command within TCL. ...
Got it. Thanks a lot ArndW.

--Balaji S.R
Post Reply