Michael-
Thanks for the guidance. I took it from there and solved the issue.
For the benefit of any other reader:
I installed phpmyadmin as suggested
Ran the following test SQL query:
---------------------------------
SELECT * FROM wp_posts WHERE post_status = 'publish'
and noted a good set of results.
Then, I applied the rules suggested above.
------------------------------------------
SELECT * FROM wp_posts WHERE post_status = 'publish' AND post_type = 'page'
I got no results.
Next I queried the post_title with the known title of one of the pages I had made.
-------------------------------------------------------
SELECT * FROM wp_posts WHERE post_title = 'contact'
Here I noted the post_type was set to 'post' and not 'page'.
Using the edit feature in the row result of phpmyadmin, I changed this to 'page', and voila, we're back in business.
Thanks.