Answers for "how to test a database"

SQL
0

what to test in database

In Database testing, 

Testing of Data Integrity
Testing of Data Validity
Data base related performance
Testing of functions, procedure and triggers
are necessary to test.

What is Database Black Box Testing?

	Database Black Box testing involves:
	•	Data Mapping
	•	Data stored and retrieved
	•	Use of Black Box testing techniques
    such as Equivalence Partitioning 
    and Boundary Value Analysis
Posted by: Guest on January-14-2021
0

test database for sql

# run the following on your MySQL CLI
mysql> CREATE DATABASE testdb;
mysql> SHOW CREATE DATABASE testdb;
mysql> USE testdb;
#Database changed
Posted by: Guest on June-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language