Skip to main content

How You Can Test Database?

Now we know the Database Testing which you can learn in my last article. In this article we will discuss about the steps that need to following to test any Database.

Database Tester should have some basic knowledge regarding SQL Command like DDL (create/drop),  DML (Insert/Delete/Update) and DCL (Grant/Revoke).


DDL (Data Definition Language): DDL is the Computer language used to create and delete the Database object in the Database. Database Object like Tables, Indexes and Users. Common DDL statements are CREATE, ALTER, DROP

DML (Data Manipulation Language): DML Statement used to Create, Add, Update and Delete data in the Database. DML command Like SELECT, UPDATE, INSERT INTO and DELETE FROM.

DCL (Data Control Language): DCL Statements are useful to control access to data stored in Database means DCL statement create privilege to allow user access to perform modification in Database. DCL command is like GRANT(to provide permission) and  REVOKE ( to remove permission).

Now below are the steps to test the Database

1. Create an Environment 
Tester need to create the setup for testing the database. Tester can create a copy of production Database or create a new Test Database with exactly same information that have production Database. Hardware characteristics should be same and DBMS should be same version of production Database.

2. Run the Test Cases
A Database tester can check the Database from UI by insert, Update and Delete the Value from UI. Tester can also be check the database by performing CRUD operation in Database. Tester can also check the Triggers, Stored Procedure also to track the Operation, Databases changes and keep track on are change performing correct or not.

3. Verify Test Result
After performing all the Test cases, Tester can check the Fail Test cases.

4. Validate Test Result
Tester can validate that the performing Test cases impact on Right Tables or Not.

5. Reporting
At last gather all the results and prepare a report for your Manager, Company, Stakeholder and others who are connected with the software.

Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.