S
scubasteve.biz
Can someone help me understand what has changed from 2003 to 2007? I have
converted a database and any query with a JOIN will not open in Design View.
I went back to 2003 and got the SQL Statement and input it into 2007 in a new
query. I get the same error. Yet there is no problem running the query in
2007. The SQL is below: (The Error when trying to look in DESIGN VIEW is: "
is not a valid name. Make sure it does not contain invalid characters or
punctuation and that it is not too long.)
INSERT INTO tbl_manufacturers (mfg_name_cwr, mfg_name_web, date_added)
SELECT tbl_import_product_download_cwr.mfg, StrConv([mfg],3) AS mfg_web,
Date() AS Today
FROM tbl_import_product_download_cwr LEFT JOIN tbl_manufacturers ON
tbl_import_product_download_cwr.mfg=tbl_manufacturers.mfg_name_cwr
WHERE (((tbl_manufacturers.mfg_name_cwr) Is Null))
GROUP BY tbl_import_product_download_cwr.mfg;
converted a database and any query with a JOIN will not open in Design View.
I went back to 2003 and got the SQL Statement and input it into 2007 in a new
query. I get the same error. Yet there is no problem running the query in
2007. The SQL is below: (The Error when trying to look in DESIGN VIEW is: "
is not a valid name. Make sure it does not contain invalid characters or
punctuation and that it is not too long.)
INSERT INTO tbl_manufacturers (mfg_name_cwr, mfg_name_web, date_added)
SELECT tbl_import_product_download_cwr.mfg, StrConv([mfg],3) AS mfg_web,
Date() AS Today
FROM tbl_import_product_download_cwr LEFT JOIN tbl_manufacturers ON
tbl_import_product_download_cwr.mfg=tbl_manufacturers.mfg_name_cwr
WHERE (((tbl_manufacturers.mfg_name_cwr) Is Null))
GROUP BY tbl_import_product_download_cwr.mfg;