Database Testing Checklist: All You Need to Know

database-testing

Database testing is used to test the main aspects of the integration between our tested software and the chosen database platform (SQL, Oracle Etc.)

It’s one of the inevitable parts of a software application these days. As a specialist tester, I became familiar with the fact that the concept of “checklists” can be an excellent and effective way of ensuring that the testing the project will be executed in a way that all the user requirements will be reflected in appropriate test cases.

Here is some database testing checklist you might have used:

  1. Check if correct data is getting saved in database upon successful page submit
  2. Check values for columns which are not accepting null values
  3. Check for data integrity. Data should be stored in single or multiple tables based on design
  4. Index names should be given as per the standards e.g. IND_<Tablename>_<ColumnName>
  5. Tables should have primary key column
  6. Null values should not be allowed for Primary key column
  7. Table columns should have description information available (except for audit columns like created date, created by etc.)
  8. For every database add/update operation log should be added
  9. Required table indexes should be created
  10. Data should be rolled back in case of failed transactions
  11. Check if data is committed to database only when the operation is successfully completed
  12. Check if input data is not truncated while saving. Field length shown to user on page and in database schema should be same
  13. Check numeric fields with minimum, maximum, and float values
  14. Test stored procedures and triggers with sample input data
  15. Database name should be given as per the application type i.e. test, UAT, sandbox, live (though this is not a standard it is helpful for database maintenance)
  16. Database logical names should be given according to database name (again this is not standard but helpful for DB maintenance)
  17. Stored procedures should not be named with prefix “sp_”
  18. Check values for table audit columns (like createddate, createdby, updatedate, updatedby, isdeleted, deleteddate, deletedby etc.) are populated properly
  19. Check numeric fields with negative values (for both acceptance and non-acceptance)
  20. Check if radio button and dropdown list options are saved correctly in database
  21. Check if database fields are designed with correct data type and data length
  22. Check if all table constraints like Primary key, Foreign key etc. are implemented correctly
  23. Input field leading and trailing spaces should be truncated before committing data to database

Using Redis Database could be a very good option. To get information about when and why to use redis database, click here.

,
Previous Post
Google AdWords vs AdSense: All You Need To Know
Next Post
How to convert HTML to PDF in .NET dynamically from URL for an IIS-hosted Application

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Menu