what is sql injection in sql server?
Answers were Sorted based on User's Feedback
Answer / venkat reddy.ravu
SQL injection is nothing but inserting malicious code with
the strings and later which will pass to the particular SQL
server instances which may damage the database or may
corrupt bthe data
For exaple:
var EmpName;
EmpName= Request.form ("EmpName");
var sql = "select * from Employee where EmpName= '" +
EmpName+ "'";
If you considers the above query and if user prompts to
enter the input as Scott,
Then query processed like this
select * from Employee where EmpName='Scott'
If user enters the input as below,
Scott,drop table Employee
In this case your query will be processed as below
select * from Employee where Ename='Scott',drop table emp
So,first select statement will be executed and then table
will be dropped.
Nothing but without standard of coding an expertised user
may damages or corrupt the databases.
To avoid SQL injection attacks:-
1)Use Parameterized Input with Stored Procedures
2)Use the Parameters Collection with Dynamic SQL
3)Filtering Input
4)LIKE Clauses
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / pankaj kumar
SQL injection is something where an end user of an application is able to submit SQL queries through the user interface and end up running those queries, causing potential damage to the database.
Is This Answer Correct ? | 1 Yes | 0 No |
why we use cursor?
4 Answers CarrizalSoft Technologies, Melstar, TCS,
How to enter binary string literals in ms sql server?
What is attribute hierarchy? : sql server analysis services, ssas
What is transaction server isolation?
What are the character string functions supported by sql server 2005?
Explain Trigger with an example?
How do you set a trace flag in sql server?
What are commit and rollback in sql?
how many triggers you can have on a table? : Sql server database administration
What is the recovery model? List the types of recovery model available in sql server?
What are orphan records?
What is a join in sql?