To me it looks like you exported two schemas, and only have one schema in the cloud server.
I guess that if you run create database test_db; and run the SQL file again, it would import everything, but you need to ask yourself, should the test_db exist in the cloud server.
Feb 24, 2024
29
Level 4
out of 31 tables in the database two wont be deploy or created only 29 does
im trying to get all my 31 tables to be deployed on gcp compute engine. i have sucessfully exported the database from phpmyadmin on my local machine and received the .sql file I have also uploaded it to the cloud (.sql file)
from the mysql command line i tried to uploade the sql file using this command
USE test_db;
SOURCE /var/my_db.sql ;
29 tables were uploaded/deploy/created
2 were not
I get this error
ERROR 1146 (42S02): Table 'test_db.backorder' doesn't exist
ERROR 1146 (42S02): Table 'test_db.client_data' doesn't exist
but when i use cat test_db
i saw the code that creates these two table .
my question is my does it work for the 29 other tables and not these two
Level 73
@Danny971 And you have created those to tables? If not try creating them manually then import the data.
Please or to participate in this conversation.