K
Ken S
Guest
I'm wondering if you could help me. I have been given a task to upsize an Access db from Access 2000 to SQL Server. I have gone thru the upsize process and have encountered errors. I cannot find any help on how to resolve these errors and would appreciate any assistance you can offer. I've looked at Microsoft.com and have found articles on upsizing that have been very good - but not for these specific errors. There are many errors but they fall within these categories, if you help on these I think I can fix the others.
--------------------------------------------------------------------------------------------------------------------
I am receiving message of 'the query is not upsizable because it depends on a form parameter'. How would I correct ?
the code :
SELECT ChildSchoolTbl.MRN, ChildSchoolTbl.Childname1, ChildSchoolTbl.SchoolName1, ChildSchoolTbl.Childname2, ChildSchoolTbl.SchoolName2,
ChildSchoolTbl.Childname3, ChildSchoolTbl.SchoolName3, ChildSchoolTbl.Childname4, ChildSchoolTbl.SchoolName4, ChildSchoolTbl.Childname5,
ChildSchoolTbl.SchoolName5, ChildSchoolTbl.Childname6, ChildSchoolTbl.SchoolName6
FROM ChildSchoolTbl
WHERE (((ChildSchoolTbl.MRN)=[Forms]![PatientFrm]![MRN]));
--------------------------------------------------------------------------------------------------------------------
Message: The wizard was unable to analyze this SQL for this query:
But it did create a procedure during the process according to the report but didn't upsize...
Original Code:
SELECT PatientsTbl.PatientName, PatientsTbl.SS, PatientsTbl.CIN, PatientsTbl.DOB,
AccountsTbl.ServiceDate, AccountsTbl.CaseManager, PatientsTbl.ActiveInactiveCase, AccountsTbl.Account,
PatientsTbl.PatientPhone, AccountsTbl.FinalStatus
FROM PatientsTbl INNER JOIN AccountsTbl ON PatientsTbl.MRN = AccountsTbl.MRN;
----------------------------------------------------------------------------------------------------------------------------
Message: Failed to upsize. Attempted to use SQL:
But it did create a procedure during the process according to the report but didn't upsize...
Original Code:
SELECT AccountsTbl.Account, AccountsTbl.Charges, AccountsTbl.Reimbersement,
AccountsTbl.SpendDown, AccountsTbl.ServiceDate, AccountsTbl.DischargeDate, PatientsTbl.MRN,
PatientsTbl.PatientName, PatientsTbl.ActiveInactiveCase, AccountsTbl.AdmitDate
FROM AccountsTbl INNER JOIN PatientsTbl ON AccountsTbl.MRN = PatientsTbl.MRN
WHERE (((PatientsTbl.ActiveInactiveCase)="ACTIVE"))
ORDER BY PatientsTbl.PatientName;
Please feel free to contact me at ken_saffer@urmc.rochester.edu
--------------------------------------------------------------------------------------------------------------------
I am receiving message of 'the query is not upsizable because it depends on a form parameter'. How would I correct ?
the code :
SELECT ChildSchoolTbl.MRN, ChildSchoolTbl.Childname1, ChildSchoolTbl.SchoolName1, ChildSchoolTbl.Childname2, ChildSchoolTbl.SchoolName2,
ChildSchoolTbl.Childname3, ChildSchoolTbl.SchoolName3, ChildSchoolTbl.Childname4, ChildSchoolTbl.SchoolName4, ChildSchoolTbl.Childname5,
ChildSchoolTbl.SchoolName5, ChildSchoolTbl.Childname6, ChildSchoolTbl.SchoolName6
FROM ChildSchoolTbl
WHERE (((ChildSchoolTbl.MRN)=[Forms]![PatientFrm]![MRN]));
--------------------------------------------------------------------------------------------------------------------
Message: The wizard was unable to analyze this SQL for this query:
But it did create a procedure during the process according to the report but didn't upsize...
Original Code:
SELECT PatientsTbl.PatientName, PatientsTbl.SS, PatientsTbl.CIN, PatientsTbl.DOB,
AccountsTbl.ServiceDate, AccountsTbl.CaseManager, PatientsTbl.ActiveInactiveCase, AccountsTbl.Account,
PatientsTbl.PatientPhone, AccountsTbl.FinalStatus
FROM PatientsTbl INNER JOIN AccountsTbl ON PatientsTbl.MRN = AccountsTbl.MRN;
----------------------------------------------------------------------------------------------------------------------------
Message: Failed to upsize. Attempted to use SQL:
But it did create a procedure during the process according to the report but didn't upsize...
Original Code:
SELECT AccountsTbl.Account, AccountsTbl.Charges, AccountsTbl.Reimbersement,
AccountsTbl.SpendDown, AccountsTbl.ServiceDate, AccountsTbl.DischargeDate, PatientsTbl.MRN,
PatientsTbl.PatientName, PatientsTbl.ActiveInactiveCase, AccountsTbl.AdmitDate
FROM AccountsTbl INNER JOIN PatientsTbl ON AccountsTbl.MRN = PatientsTbl.MRN
WHERE (((PatientsTbl.ActiveInactiveCase)="ACTIVE"))
ORDER BY PatientsTbl.PatientName;
Please feel free to contact me at ken_saffer@urmc.rochester.edu