So I have been researching SQL standards with regard to using TRUNCATE vs DROP. My company is trying to determine whether we should use TRUNCATE before a DROP as a standard coding convention, or if we should just use DROP. Typically, we have always used TRUNCATE and DROP instead of just DROP.
According to this previously answered question, it looks like there is no reason to use both: https://dba.stackexchange.com/questions/4163/why-use-both-truncate-and-drop
The above link also addresses that with TRUNCATE, there is unnecessary overhead.
However, since it seems that many people still use both TRUNCATE and DROP instead of only DROP, what are the advantages are to using a TRUNCATE before a DROP??