Quote Originally Posted by n8pbm View Post
Just an update, it looks like I have a product listed in the products table that does not have a record in the products_description table. I believe this is causing the issue.

I may have to find a way to create a SQL Statement to identify any other orphan records.
select p.products_id from products p where not exists (Select pd.products_id from products_description pd where pd.products_id = p.products_id);