logging in or signing up Database Testing upkar Download Post to : URL : Related Presentations : Share Add to Flag Embed Email Send to Blogs and Networks Add to Channel Uploaded from authorPOINT lite Insert YouTube videos in PowerPont slides with aS Desktop Copy embed code: Embed: Flash iPad Dynamic Copy Does not support media & animations Automatically changes to Flash or non-Flash embed WordPress Embed Customize Embed URL: Copy Thumbnail: Copy The presentation is successfully added In Your Favorites. Views: 28242 Category: Education License: All Rights Reserved Like it (28) Dislike it (4) Added: April 13, 2007 This Presentation is Public Favorites: 11 Presentation Description Good one i got from net. Comments Posting comment... By: yrbhirud (20 month(s) ago) can you please send me the presentation to yrbhirud@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: jeff2tom (20 month(s) ago) please send the presentation to tom_raichel@yahoo.co.in , thank u. Saving..... Post Reply Close Saving..... Edit Comment Close By: sowmyasb (26 month(s) ago) plz send this presentation now if possbile to id sowmi.sb@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: veenapriyadarshini (30 month(s) ago) hi can u kindly send this ppt to the mentioned mail kvpd.korata@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: arunrajendran (31 month(s) ago) Simple and clear Saving..... Post Reply Close Saving..... Edit Comment Close loading.... See all Premium member Presentation Transcript Slide1: <![CDATA[ Database Testing Author: Krishna Yannam Asst. Manager (Quality)]]>Slide2: <![CDATA[ Database Testing - DB Updates Database Testing mainly concentrates on following: Data Integrity test Stored Procedure test Type test Data Size Test Event Driven Item Test Input Item Verification Close Show]]>Slide3: <![CDATA[ Data Integrity Test Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Once a value undergoes any of the above actions (update / Delete / Insert) the database should be verified for the changes performed on related entities i.e., Foreign key / Primary key and all dependent entities BACK]]>Slide4: <![CDATA[ Every Stored Procedure is to be tested separately for its functionality ( Based on Separate functions it performs ) Stored procedures need to be broken up into Action Items based on Functions and then Each action item needs to be tested separately as the results of Complete Stored procedure. Execution may differ from the results obtained by partial execution. This also helps in validating the modularity of Code (White Box). Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Store Procedure Test]]>Slide5: <![CDATA[ BACK In the case of stored procedures, to come up with test cases one can consider the following: 1. The no. of arguments being passed 2. The data type of each of the arguments being passed 3. The order of the arguments being passed 4. The return value 5. The data type of the return value 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 Store Procedure Test]]>Slide6: <![CDATA[ BACK 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 Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Type Test]]>Slide7: <![CDATA[ BACK Performance of Data size testing is often done only at the front end during the unit testing , but it is essential to perform it at back end separately . This ensures smooth transition while appending functionality and integrating modules as during these Phases , the data is passed to the system with direct user interaction and bypassing front end validation. Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Data Size Test]]>Slide8: <![CDATA[ BACK Event Driven Actions (Triggers or Scheduled Actions) needs to be tested on 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 with the help of DBA also . B) Actions performed by the above stated events. Here the contents of such stored procedures or scheduled actions are verified for the functionality . Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Environment Driven Item Test]]>Slide9: <![CDATA[ BACK 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. Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Input Item Verification]]>Slide10: <![CDATA[]]> You do not have the permission to view this presentation. In order to view it, please contact the author of the presentation.
Database Testing upkar Download Post to : URL : Related Presentations : Share Add to Flag Embed Email Send to Blogs and Networks Add to Channel Uploaded from authorPOINT lite Insert YouTube videos in PowerPont slides with aS Desktop Copy embed code: Embed: Flash iPad Dynamic Copy Does not support media & animations Automatically changes to Flash or non-Flash embed WordPress Embed Customize Embed URL: Copy Thumbnail: Copy The presentation is successfully added In Your Favorites. Views: 28242 Category: Education License: All Rights Reserved Like it (28) Dislike it (4) Added: April 13, 2007 This Presentation is Public Favorites: 11 Presentation Description Good one i got from net. Comments Posting comment... By: yrbhirud (20 month(s) ago) can you please send me the presentation to yrbhirud@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: jeff2tom (20 month(s) ago) please send the presentation to tom_raichel@yahoo.co.in , thank u. Saving..... Post Reply Close Saving..... Edit Comment Close By: sowmyasb (26 month(s) ago) plz send this presentation now if possbile to id sowmi.sb@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: veenapriyadarshini (30 month(s) ago) hi can u kindly send this ppt to the mentioned mail kvpd.korata@gmail.com Saving..... Post Reply Close Saving..... Edit Comment Close By: arunrajendran (31 month(s) ago) Simple and clear Saving..... Post Reply Close Saving..... Edit Comment Close loading.... See all Premium member Presentation Transcript Slide1: <![CDATA[ Database Testing Author: Krishna Yannam Asst. Manager (Quality)]]>Slide2: <![CDATA[ Database Testing - DB Updates Database Testing mainly concentrates on following: Data Integrity test Stored Procedure test Type test Data Size Test Event Driven Item Test Input Item Verification Close Show]]>Slide3: <![CDATA[ Data Integrity Test Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Once a value undergoes any of the above actions (update / Delete / Insert) the database should be verified for the changes performed on related entities i.e., Foreign key / Primary key and all dependent entities BACK]]>Slide4: <![CDATA[ Every Stored Procedure is to be tested separately for its functionality ( Based on Separate functions it performs ) Stored procedures need to be broken up into Action Items based on Functions and then Each action item needs to be tested separately as the results of Complete Stored procedure. Execution may differ from the results obtained by partial execution. This also helps in validating the modularity of Code (White Box). Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Store Procedure Test]]>Slide5: <![CDATA[ BACK In the case of stored procedures, to come up with test cases one can consider the following: 1. The no. of arguments being passed 2. The data type of each of the arguments being passed 3. The order of the arguments being passed 4. The return value 5. The data type of the return value 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 Store Procedure Test]]>Slide6: <![CDATA[ BACK 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 Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Type Test]]>Slide7: <![CDATA[ BACK Performance of Data size testing is often done only at the front end during the unit testing , but it is essential to perform it at back end separately . This ensures smooth transition while appending functionality and integrating modules as during these Phases , the data is passed to the system with direct user interaction and bypassing front end validation. Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Data Size Test]]>Slide8: <![CDATA[ BACK Event Driven Actions (Triggers or Scheduled Actions) needs to be tested on 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 with the help of DBA also . B) Actions performed by the above stated events. Here the contents of such stored procedures or scheduled actions are verified for the functionality . Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Environment Driven Item Test]]>Slide9: <![CDATA[ BACK 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. Actions: Updating / Deletion / Fresh Insertion/Display of new Screen /Time bound actions. Input Item Verification]]>Slide10: <![CDATA[]]>