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.
では、同一のスキーマを持つ2 つの .sqlite データベース ファイル(somedata.sqlite と someOtherData.sqltie など) をMac で 1 つの .sqlite ファイルにマージするにはどうすればよいでしょうか?
これはターミナルで実行できると思います。誰かが手順を詳しく説明してくれたら、とてもクールです!
2 つのファイルのスキーマがまったく同じ場合は、ファイルをダンプして新しいデータベースにインポートできます。
sqlite3 database1.db '.dump' >> tmp.txt sqlite3 database2.db '.dump' >> tmp.txt sqlite3 database3.db '.import tmp.txt'
私はOSXではないので、おそらくこのようではないかもしれませんが、あなたはその考えを理解しています.