コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards
解決済み

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?

トピック

トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。

1 受け入れられたソリューション

Avatar

正解者
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.

元の投稿で解決策を見る

3 返信

Avatar

正解者
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.