What is differnce between Error code and Error Level in Bteq
Answers were Sorted based on User's Feedback
Answer / harsha
Error code is the code for the error for ex 3807 is the error code for the error "object does not exist"
To know the error codes type
select * from dbc.errormsgs
in the Queryman
Error level is the severity set for the corresponding error code
if error level is
0- Success
4- Warning
8- User Error
12- Fatal error
16- Typical Error
Is This Answer Correct ? | 17 Yes | 2 No |
Answer / yuvaevergreen
Error code or return code is a value returned by BTEQ at
the end of each query. Error level is a bteq command used
to assign severity to some error numbers.
.IF ERRORCODE > 0 THEN .GOTO ... is an example for error
code .SET ERRORLEVEL 3807 SEVERITY 0 is an example.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / raos
Error code returns zero if the previous sql statement is success.t returns non zero value if the previous sql statement is failed.
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / vinay sir(datawarehousing tech
One small correction to the above answer.
Errorcode: The code returned by the previous sql statement
which resembles the error message information(we can see in
DBC.ErrorMsgs table).
Return Code: The code return by the script after execution.
These return codes can be 0,2,4,8,12,16.
Note: Error code and Return code are different.
Errorlevel:The severity set to the errorcode at the
time of errorhandling.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / tdguy
Errorcode is used in bteq conditional logic. It holds the
return code of every sql in bteq. 0 indicates perfect
excution of the sql.
Errorlevel assigns severity to error numbers.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / uli
in addiion to the above
Error-Coce is set with each SQL-statement
Error-level is kept for the whole Session
So, it makes a difference in conditinals
.if ERRORCODE -- question about the last statement
.if ERRORLEVEL -- question about the highest level reached
Is This Answer Correct ? | 1 Yes | 0 No |
Is PK concept available in Teradata. If it is how can we create Primary Key for a table in TD
In general, how do you optimze any sql in teradata?
can I use “drop” statement in the utility “fload”?
2 Answers Accenture, CTS, NTT Data,
What is upsert statement in teradata?
Explain the term 'columns' related to relational database management system?
What are the types of tables in Teradata
22 Answers Cap Gemini, Cognizant, Infosys,
Highlight a few of the important components of Teradata?
What is basic teradata query language?
Differentiate database data and data warehouse data?
If the PMON is not working then how do you manage and monitor all processes, resources and sessions etc.
If I wanted to run a TPump job only once per day - basically working on a file that is produced once per day - how would you set up the parameters for that sort of job ?
Does SDLC changes when you use Teradata instead of Oracle?