Database Testing
Database Testing
Database Testing
Type test
Close Show
Data Integrity Test
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
K
Store Procedure Test
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
into Action Items based on Functions and then Each action item needs to be
Execution may differ from the results obtained by partial execution. This also
Based on these you can write both positive and negative test cases, consider a
simple example of a stored procedure taking 2 numbers as input and returning
the sum of the 2 numbers
K
Type Test
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
This test is performed to verify that the data types used by the DBA are same
as expected by agreed upon by the developer. Often the data types chosen by
developers are not the same as suggested by database administrators ,
especially for the fields like
A) Phone (Num./Text)
B) Description (Large Text)
These kinds of mismatches often do not effect the functionality and normal
execution of code, but prove to be very Costly during Updating of product or
during addition of features to the existing modules
K
Data Size Test
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
Performance of Data size testing is often done only at the front end during the
modules as during these Phases , the data is passed to the system with direct
K
Environment Driven Item Test
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
two parameters.
A) Events that trigger these actions: Here QA needs to check the events on
which any of the trigger can get fired/executed . This testing can be done
B) Actions performed by the above stated events. Here the contents of such
K
Input Item Verification
Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions.
This is the process of verification of the input items (Though this is not totally
a part of database testing , but this has to be performed essentially during
database testing of the Web based applications.
Often it is seen that the input items (Text Box / RTB / Combination Box /
Active-X controls) are tested for validation only at front end (Screen testing)
but these are again to be tested with junk Character values to confirm that
they do not push in such characters which the databases Often
misrepresent or Replace with other characters (this testing can partially be
performed during Unit testing also by the developer.
K
Thank Q..