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
How many types of triggers in sql server?
What is difference between order by and group by?
Can we perform backup restore operation on tempdb?
Write a SQL query to delete a table?
Tell me when is the update_statistics command used?
where the connection string store in the database
What are sql servers used for?
What is the correct order of the logical query processing phases?
What is system stored procedures?
How to drop existing indexes in ms sql server?
What is the difference between dbcc indexdefrag and dbcc reindex?
What does COMMIT command do?
Define indexes?
How many clustered indexes there can be on table ?
what’s the difference between Covering Indexes and Clustered Indexes ? how to use clustered index small ?