Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards
GELÖST

Truncating a foreignkey? Consequences

Avatar

Level 6

Hi, I've created a 1-to-1 relationship between table ABC and Recipients.

This question is related to this one.  

Now, We need to empty the table ABC every day, to ingest new data only. This is done using a SQL activity and doing a truncate on the table, so we only keep the headers.

Beign the relationship a foreign key with recipients, how would doing a truncate action on table ABC affect recipients?

Themen

Anhand von Themen werden Community-Inhalte kategorisiert und Sie können so relevanten Inhalt besser finden.

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Community Advisor

Hi @god_prophet ,

 

In the given links , the attribute revIntegrity="normal" is defined, so it will initialize all the Foreign Keys if the deletion happened at the source Schema. 

 

So the truncate operation on ABC would only initialize the foreign keys of Recipient Schema.

 

PFA the documentation for reference,

 

https://experienceleague.adobe.com/en/docs/campaign-classic/using/configuring-campaign-classic/schem...

 

Regards,

Pravallika.

Lösung in ursprünglichem Beitrag anzeigen

3 Antworten

Avatar

Korrekte Antwort von
Community Advisor

Hi @god_prophet ,

 

In the given links , the attribute revIntegrity="normal" is defined, so it will initialize all the Foreign Keys if the deletion happened at the source Schema. 

 

So the truncate operation on ABC would only initialize the foreign keys of Recipient Schema.

 

PFA the documentation for reference,

 

https://experienceleague.adobe.com/en/docs/campaign-classic/using/configuring-campaign-classic/schem...

 

Regards,

Pravallika.

Avatar

Level 6

Hi @LakshmiPravallika , 

 

Could you detail this part: "So the truncate operation on ABC would only initialize the foreign keys of Recipient Schema".

What is: only initialize? So records on Recipients won't be deleted?

I need only to delete (truncate) records on ABC.

Avatar

Level 6

So according to me research, those foreign keys in the Recipients schema are set to null, so there are no orphan foreign keys.

 

No records are deleted in Recipients, due to  the attribute revIntegrity="normal".

Thank you, Pravallika.