Reputation: 351
I'm trying to move a table from a database on SQL Developer on my laptop to my desktop's SQL developer
The files to generate the tables and the schema I no longer have access to so I feel like this is my only option. But I can't figure out how to do this smoothly, is it even possible? I'm also open to just recreating the table
It should be simple but I can't figure it out. I'm a complete beginner so I suspect this has something to do with having the table connecting to the other tables in the model which is why this can't be done easily or requires more steps than I'm think it'll take.
Upvotes: 0
Views: 312
Reputation: 167962
SQL Developer is NOT a database.
SQL Developer is a client application that is used to access one or more databases.
There are many options including:
SELECT DBMS_METADATA.GET_DDL('TABLE', TABLE_NAME) FROM USER_TABLES;
and copy the generated DDL statements to the laptop and generate the tables.Upvotes: 2