How can you get @@error and @@rowcount at the same time?
Answers were Sorted based on User's Feedback
Answer / gunasekaran k.j
SELECT @@Rowcount as rwCount, @@Error as Er
Is This Answer Correct ? | 15 Yes | 2 No |
Answer / pankaj
If @@Rowcount is checked after Error checking statement then
it will have 0 as the value of @@Recordcount as it would
have been reset. And if @@Recordcount is checked before the
error-checking statement then @@Error would get reset. To
get @@error and @@rowcount at the same time do both in same
statement and store them in local variable. SELECT @RC =
@@ROWCOUNT, @ER = @@ERROR
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / binoo tiku
@@error variable shows the error number of the last
T-SQL error
@@rowcount variable gives the number of rows affected by
the most recent SQL statements.
Is This Answer Correct ? | 9 Yes | 7 No |
Answer / raji
@@error - displays the error number of last T-Sql statement
@@rowcount - displays the total row count of last T-Sql
statement
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sachin rakshe
If @@Rowcount is checked after Error checking statement then
it will have 0 as the value of @@Recordcount as it would
have been reset. And if @@Recordcount is checked before the
error-checking statement then @@Error would get reset. To
get @@error and @@rowcount at the same time do both in same
statement and store them in local variable. SELECT @RC =
@@ROWCOUNT, @ER = @@ERROR
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / yjreddy
select @@ROWCOUNT
it will give the no of rows affected by last sql statement
select @@ERROR
it will display the error number for last sql statement
Is This Answer Correct ? | 0 Yes | 3 No |
Answer / ramakrishna
DECLARE @RC int
DECLARE @ER int
INSERT INTO T(Cal1,Col2..)
SELECT ColX,ColY..
FROM T1
SELECT @RC = @@ROWCOUNT
SELECT @ER = @@ERROR
Is This Answer Correct ? | 3 Yes | 16 No |
What is dbcc?
How to call a function from a stored procedure in SQL Server ?
what is package and it uses and how can u call a package
What types of replication are supported in sql server?
What does it mean if @@cursor_row returns a negative number?
How to recompile stored procedure at run time?
Explain the concept of recursive stored procedure.
What is join query?
How to add more data to the testing table in ms sql server?
What is apply operator in sql?
What are the advantages dts has over bcp?
explain query execution plan