Hello @dishasharma ,
Please find the definition of Integrity:
Document URL: https://experienceleague.adobe.com/docs/campaign-classic/using/configuring-campaign-classic/schema-reference/database-links.html?lang=en
Example:
Imagine you have two tables: Order Confirmation and Recipient. You can set up a link between them using code within the Order Confirmation table.
<element label="Recipient" name="recipient" integrity = "normal" revIntegrity="own" revLink="order" target="nms:recipient" type="link">
<join xpath-dst="@id" xpath-src="@recipient-id"/>
</element>

1. Explanation:
- This code creates a 1-to-1 link from the Order Confirmation table to the Recipient table.
- The "integrity=neutral" setting ensures that deleting an Order Confirmation record won't affect the linked Recipient record.

2. Reverse Link:
- Adobe Campaign automatically creates a reverse link from the Recipient table back to the Order Confirmation table.
- This link typically has an "integrity=own" setting, meaning deleting a Recipient record will delete all associated Order Confirmation records.

Key Points:
- "integrity=neutral": No action occurs on target records when source records are deleted.
- "integrity=own": Deleting a source record triggers the deletion of linked target records.
Summary:
- With "integrity=neutral," deleting an Order Confirmation record won't affect the linked Recipient.
- With "integrity=own," deleting a Recipient record will delete all linked Order Confirmation records.