Thank you for your response!!!
The back end is Access.
The database is not split... There is only 2 data entry employess entering data in then managers and directors that will open the database just to run reports.
There are just 2 tables that is involved. Upon further review, I think I nailed it down to 1 particular query. Its just combining the 2 tables and I think maybe with the size of the tables and the amount of columns, is what the problem is...(i inserted the breaks to make it a little more readable)
INSERT INTO
[PCIO Master Data Table] ( [Review Identifier], [Coverage ID], [Company Code], [Review Id], [Prefix A], [Prefix B], RO, [Dec], [Account Number], [Contract Number], Term, Coverage, State, EmpID, Complexity, Premium, [Service Center], [Work Type], [Effective Date], [Work Received], [Review Status], Reviewer, [Question Id], [Response Id], Comments, [Date Recorded] )
SELECT
([Data - Master Review]![Master Review Id] & [Data - Master Review]![Question Id]) AS [Review Master ID],
[Data - Master Account - Coverage].[Coverage ID],
[Data - Master Account - Coverage].[Company Code],
[Data - Master Account - Coverage].[Review Id],
[Data - Master Account - Coverage].[Prefix A],
[Data - Master Account - Coverage].[Prefix B],
[Data - Master Account - Coverage].RO,
[Data - Master Account - Coverage].Dec,
[Data - Master Account - Coverage].[Account Number],
[Data - Master Account - Coverage].[Contract Number],
[Data - Master Account - Coverage].Term,
[Data - Master Account - Coverage].Coverage,
[Data - Master Account - Coverage].State,
[Data - Master Account - Coverage].EmpID,
[Data - Master Account - Coverage].Complexity,
[Data - Master Account - Coverage].Premium,
[Data - Master Account - Coverage].[Service Center],
[Data - Master Account - Coverage].[Work Type],
[Data - Master Account - Coverage].[Effective Date],
[Data - Master Account - Coverage].[Work Received],
[Data - Master Account - Coverage].[Review Status],
[Data - Master Account - Coverage].Reviewer,
[Data - Master Review].[Question Id],
[Data - Master Review].[Response Id],
[Data - Master Review].Comments AS [Auditor Comments],
[Data - Master Review].[Date Recorded] AS [Date Auditor Entered]
FROM [Data - Master Account - Coverage] LEFT JOIN [Data - Master Review] ON [Data - Master Account - Coverage].[Coverage ID] = [Data - Master Review].[Coverage Data Id]
WHERE ((([Data - Master Account - Coverage].[Review Status])>1));
Maybe I just answered my own problem, but thanks for trying to help if i did.
And it has to be one of the deals where the boss doesn't want to start over so I gotta make since of this thing... (sigh)
|