简体   繁体   中英

Import table in Oracle Sql Developer

I am using Oracle Sql Developer. I have a table in one schema. I want to copy this table into another schema with its all data. How can I do this? Thanks,

CREATE TABLE schema1.new_table
  AS (SELECT * FROM schema2.old_table);

You need to make sure you grant proper access to the schemas. Here is a Tutorial

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM