what is meant by database testing?
what is the strategy to be followed for database testing?
Answer Posted / indranil
In DB testing we need to check for:
1. The field size validation.
2. Check constraints.
3. Indexes are done or not (for performance related issues)
4. Stored procedures.
5. The field size defined in the application is matching
with that in the db.
6. Relevance of search results
7. Data integrity
8. Data validity
9. Data recovery
10. Security
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Explain the components of a test plan?
i need some objective type papers for my certification
How we will do Memory Testing? There is any tool to do that testing and to whome this testing to be performed?
What is defect cascading in software testing?
What is alpha testing?
What is error cusing tecnique
Explain stub in testing point of view?
how to explain banking domain project in testing?
Hi All. How can we write negative test cases for Logout Operation ? Please place the answer with a few details and if possible add some related object properties. "A tester exposes his/her ability not only by words he/she also proof it by work"
How quickly we need to fix the bug?
How to derive test data from the design documents?
IF ASCII_CODE_OF_ENTERED_CHAR is less than 44 THEN reject it ELSE IF ASCII_CODE_OF_ENTERED_CHAR is greater than 56 THEN reject it ELSE it's a digit, so accept it Which one of the following sets of ASCII codes do you use to test the sample code above WITHOUT redundant coverage?
What is the term ‘quality’ mean when testing?
what is the difference between Risk based and Requirement based testing???
How do i write a test condition to test the following simple program with the intention of 100% statement coverage Print “Hello World” If Date $ = ‘01-01-2000’ then Print “Happy New Year” END IF PRINT “The date is = “Date $ PRINT “The time is = “Time $ END Could anyone please clarify in detail. Would really appreciate it....