Doing an upgrade to Sage CRM 7.1, and I wrote a little bit of T-SQL to disable all the triggers. Enabling triggers should be a simple search and replace ""DISABLE"" with ""ENABLE"". Hope you find it useful (and I hope that socialcast doesn't think I'm trying to hack their database):
USE CRM;
GO
/* Disable all the triggers */
DISABLE TRIGGER trguUsersSyncMAS90 ON dbo.Users;
GO
DISABLE TRIGGER trguCompanySyncMAS90 ON dbo.Company;
GO
DISABLE TRIGGER trguPersonSyncMAS90 ON dbo.Person;
GO
DISABLE TRIGGER trguAddressSyncMAS90 ON dbo.Address;
GO
DISABLE TRIGGER trguAddressLinkSyncMAS90 ON dbo.Address_Link;
GO
DISABLE TRIGGER trguEmailSyncMAS90 ON dbo.Email;
GO
DISABLE TRIGGER trguPhoneSyncMAS90 ON dbo.Phone;
GO
DISABLE TRIGGER trguOpportunitySyncMAS90 ON dbo.Opportunity;
GO
DISABLE TRIGGER trguCaptionsSyncMAS90 ON dbo.Custom_Captions;
GO
SELECT * FROM sys.triggers WHERE is_disabled = 0; /* This, of course, allows me to check that all the triggers were disabled. */