-- Search all tables in current db scope with 'Customer' in the name
SELECT * FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME LIKE '%Customer%'
GO
-- Search all columns in the current db scope with 'Customer' in the name
SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%Customer%'
GO