Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はいくつかのDerbyデータベースをすでに作成しており、データを持っています。
それぞれのスキーマ名を変更する必要があるため、スキーマの名前を変更するか、すべてのデータをエクスポートして新しく作成したデータベースにインポートする効率的な方法を探しています。
アドバイスありがとう
create table mynewschema.mynewtable( column-definitions... ); insert into table mynewschema.mynewtable select * from myoldschema.myoldtable; drop table myoldschema.myoldtable;