Wht is SQL Injection Attack ?
Answers were Sorted based on User's Feedback
Answer / mustafa_7_8_6
SQL injection is a technique that exploits a security
vulnerability occurring in the database layer of an
application. The vulnerability is present when user input
is either incorrectly filtered for string literal escape
characters embedded in SQL statements or user input is not
strongly typed and thereby unexpectedly executed. It is in
fact an instance of a more general class of vulnerabilities
that can occur whenever one programming or scripting
language is embedded inside another.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vikas kant
Sql injection attack is the form of attack on the database
driven websites in which attacker executes some
unauthorised T-Sql commands while taking the advantage of
poor input validation.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saman
Read http://www.expertcore.org/viewtopic.php?f=74&t=2101 for
"what is SQL injection" with examples.
Is This Answer Correct ? | 0 Yes | 0 No |
In the below query i have performed the commit transaction statement but still the values after the save are not saved. Can you please let me know why are the statements after save are rolled back even after commiting the data. help me with the understanding declare @trans2 varchar(10)='transaction2' begin transaction @trans2 insert into emp values(100,'xy',600); save transaction @trans2 insert into emp values(200,'pq',700); insert into emp values(300,'pq',800); commit transaction @trans2 rollback tran @trans2
What is user-defined function? Explain its types i.e. Scalar and inline table value user-defined function?
What is acid db?
How to retrieve data from log files in SQL SERVER ?????
how to get the maximum among two tables,for example table 1 (dep1) have (emp_id,emp_name,salary) columns and table 2 (dept2) have (emp_id,emp_name,salary) columns,i want which employee have the maximum salary among two tables?
Does group by or order by come first?
How do I create a trace in sql server?
What do you understand by mirroring?
How do you read transaction logs
Define left outer join in sql server joins?
what's the difference between SQL & MY-SQl...? And what we learn from these ....?
Is candidate a key?