what is meant by sql injection with example and one more
question how to catch the errors in sqlserver
Answers were Sorted based on User's Feedback
Answer / sudheer
sql injection attacks are used to steal information from a
database from which normally not be available and /or to
gain access to an organaization 's host computers through
the computer that is hosting the database.
EXAMPLE:
select email,pwd,login_id,fullname from members where
email='x'
Now somebody does not put 'x' as the input but
puts 'x ;drop table members;' so the actual sql wich will
execute is
select email,pwd,login_id,fullname from members where
email=x;drop table members;
Think once what happens to ur database.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / 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 |
What is use of attribute hierarchy ordered ? : sql server analysis services, ssas
What is @@error in sql?
What is cursors?
What is optimization and its types?
as a part of your job, what are the dbcc commands that you commonly use for database maintenance? : Sql server database administration
Do you know exporting and importing utility?
What are the different types of collation sensitivity?
What is the difference between clustered and a non-clustered index?
Can you index views?
Other than truncate statement, which other command can by-pass the trigger on the tables?
How to retrieve error messages using odbc_errormsg()?
What is Lock table in SQL?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)