what is meant by sql injection with example and one more
question how to catch the errors in sqlserver
Answer Posted / kanan
how to catch the errors in sqlserver?
BEGIN TRY
SELECT 1/0
END TRY
BEGIN CATCH
RETURN ERROR_NUMBER()
RETURN ERROR_MESSAGE()
RETURN ERROR_LINE()
END CATCH
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the size of transaction log file?
How optimize sql query with multiple joins in sql server?
What are the benefits of normalization?
Is foreign key unique?
whats new about truncate in sql server 2008?
What’s the distinction between dropping a info and taking a info offline?
explain different types of constraints? : Sql server database administration
Explain nested join?
How to get @@error and @@rowcount at the same time?
how do you determine the Load performance of any query in sql server {example how do u determine performance of a select stmnt which returns Dynamically many no of records ... some times 100,1000,10000 etc., }
What is snapshot report?
How to create new table with "create table" statements?
How many levels of sp nesting are possible?
How to encrypt Strored Procedure in SQL SERVER?
How to write a query with a left outer join in ms sql server?