G
Guest
I have an append query that will not work and causes all the records to be
rejected because of validation rules. This is the SQL view of the query I
bult with the query builder.
INSERT INTO PHYSICIAN ( physician_id )
SELECT DOCLIST_Working.License
FROM DOCLIST_Working
WHERE (((DOCLIST_Working.License) Is Not Null));
Based on reading other posts here, the properties of "physician_id" are:
Required-NO; Allow Zero Lenght-YES; Indexed-YES (Duplicates OK). The same
properties of "license" are: NO; NO; NO, respectively. The datatype of both
fields are the same as Text. The only difference I can see is that "license"
has a Size of 15 and "physician_id" has 50.
There are other fields in the Physician table that are required. Do these
need to be set to No as well? If not, I am at a loss as to what to look for.
Thanks.
rejected because of validation rules. This is the SQL view of the query I
bult with the query builder.
INSERT INTO PHYSICIAN ( physician_id )
SELECT DOCLIST_Working.License
FROM DOCLIST_Working
WHERE (((DOCLIST_Working.License) Is Not Null));
Based on reading other posts here, the properties of "physician_id" are:
Required-NO; Allow Zero Lenght-YES; Indexed-YES (Duplicates OK). The same
properties of "license" are: NO; NO; NO, respectively. The datatype of both
fields are the same as Text. The only difference I can see is that "license"
has a Size of 15 and "physician_id" has 50.
There are other fields in the Physician table that are required. Do these
need to be set to No as well? If not, I am at a loss as to what to look for.
Thanks.