Migrating from GoldMine to Zoho CRM represents a critical business transformation that can unlock significant operational efficiencies and growth opportunities.
Analyze your GoldMine database for data quality issues using SQL tools for accurate assessment.
-- Identify inactive contacts
SELECT COUNT(*) as InactiveContacts,
MIN(LastDate) as OldestActivity,
MAX(LastDate) as NewestActivity
FROM Contact1
WHERE LastDate < DATEADD(year, -3, GETDATE())
AND Company IS NOT NULL
-- Account Extraction Script
SELECT DISTINCT
RTRIM(LTRIM(Company)) as AccountName,
CASE
WHEN State IN ('CA', 'California', 'ca') THEN 'California'
WHEN State IN ('NY', 'New York', 'ny') THEN 'New York'
ELSE RTRIM(LTRIM(State))
END as BillingState,
RTRIM(LTRIM(Address1)) as BillingStreet,
RTRIM(LTRIM(City)) as BillingCity,
RTRIM(LTRIM(Zip)) as BillingCode,
Phone1 as Phone,
LOWER(RTRIM(LTRIM(Email))) as Email
FROM Contact1
WHERE Company IS NOT NULL
AND Company != ''
AND LEN(Company) > 2
GROUP BY Company, State, Address1, City, Zip, Phone1, Email
Create mapping tables to standardize picklist values from GoldMine to Zoho options.
-- Create account hierarchy mapping
WITH CompanyHierarchy AS (
SELECT DISTINCT
Company as AccountName,
COUNT(*) as ContactCount,
MAX(LastDate) as LastActivity
FROM Contact1
WHERE Company IS NOT NULL
GROUP BY Company
)
SELECT * FROM CompanyHierarchy
ORDER BY ContactCount DESC, LastActivity DESC
Import data in logical sequences: Accounts, Contacts, Opportunities, then Activities.