I am trying to TRUNCATE
a table but I am getting this error:
Cannot truncate a table 'ALOT_OF_USELESS_LOGS' because it is being referenced by a FOREIGN KEY constraint.
However, I have already truncated all the table where it is referenced EXEC sp_fkeys 'ALOT_OF_USELESS_LOGS'
and they all truncated successfully but over this table I am still getting this error.
How can I let this go, ideally without dropping constraints?