If you need to audit which of your workflows have run and contained enterprise workflow actions, then you can run this script against your Nintex Content DB:
Select distinct WorkflowName, CurrentActivityTitle, ListID, SiteID, WebID from WorkflowInstance wi inner join WorkflowProgress wp on wi .InstanceID = wp . InstanceID inner join <Nintex Workflow ConfigDB>.dbo.Activities Ac on CurrentActivityTitle = ActivityName where RequiredFeatureSet = 100
Replace the <Nintex Workflow ConfigDB> with the name of your Nintex Config DB.
This script will need to be run against all of your Nintex Contents, and will only return those workflows that have been run at least 1.

