「Tep3」を編集中

移動先: 案内検索

警告: ログインしていません。編集を行うと、あなたの IP アドレスが公開されます。ログインまたはアカウントを作成すれば、あなたの編集はその利用者名とともに表示されるほか、その他の利点もあります。

この編集を取り消せます。 下記の差分を確認して、本当に取り消していいか検証してください。よろしければ変更を保存して取り消しを完了してください。
最新版 編集中の文章
27行目: 27行目:
 
==== Users ====
 
==== Users ====
 
* はじめにtepnoteのユーザーをエクスポートし tep3にインポートする
 
* はじめにtepnoteのユーザーをエクスポートし tep3にインポートする
==== Notes ====
+
==== Jiins → Notes ====
 
* tepnoteのjiinsをエクスポートし tep3のnotesにインポートする
 
* tepnoteのjiinsをエクスポートし tep3のnotesにインポートする
 
<pre>
 
<pre>
38行目: 38行目:
 
</pre>
 
</pre>
 
:- このときJiinsのidとNotesのidを合わせる Notesのuser_idは1にする(1は淨久寺グループが代々引き継ぐアカウントのユーザーID)
 
:- このときJiinsのidとNotesのidを合わせる Notesのuser_idは1にする(1は淨久寺グループが代々引き継ぐアカウントのユーザーID)
<pre>
 
update notes set user_id = 1;
 
</pre>
 
 
<pre>
 
<pre>
 
tep3_development=# select * from notes;
 
tep3_development=# select * from notes;
62行目: 59行目:
 
</pre>
 
</pre>
  
==== Clients ====
+
==== ClientsをClientsとOthersに分ける Clients以下は寺ごと(ノートごと)に出し入れする ====
* 旧ClientsをClientsとOthersに分ける 寺ごと(ノートごと)に出し入れする
+
* 新Clients(家テーブル) 旧Clientsから主を抜き出す ie_idを新Clientsのidにする そのidにOthersがぶらさがる 旧Clientsのmemoは別テーブルに移す
:- 新Clients(家テーブル) 旧Clientsから主を抜き出す ie_idを新Clientsのidにする そのidにOthersがぶらさがる 旧Clientsのmemoは別テーブルに移す
 
 
<pre>
 
<pre>
 
エクスポート
 
エクスポート
\COPY (select ie_id, user_id, jiin_id, table_order, created_at, updated_at from clients where jiin_id = 1 and nusi = true order by ie_id asc, jiin_id asc) TO '/Users/jq/3tep_gomi/clients_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
+
\COPY (select ie_id, user_id, jiin_id, created_at, updated_at from clients where jiin_id = 1 and nusi = true order by ie_id asc, jiin_id asc) TO '/Users/jq/3tep_gomi/clients_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
  
\COPY (select ie_id, user_id, jiin_id, table_order, created_at, updated_at from clients where jiin_id = 2 and nusi = true order by ie_id asc, jiin_id asc) TO '/Users/jq/3tep_gomi/clients_2.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
+
\COPY (select ie_id, user_id, jiin_id, created_at, updated_at from clients where jiin_id = 2 and nusi = true order by ie_id asc, jiin_id asc) TO '/Users/jq/3tep_gomi/clients_2.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
  
 
...
 
...
75行目: 71行目:
 
<pre>
 
<pre>
 
インポート
 
インポート
\COPY clients(id, user_id, note_id, line, created_at, updated_at) FROM '/Users/jq/3tep_gomi/clients_1.csv' WITH CSV DELIMITER ',';
+
\COPY clients(id, user_id, note_id, created_at, updated_at) FROM '/Users/jq/3tep_gomi/clients_1.csv' WITH CSV DELIMITER ',';
  
\COPY clients(id, user_id, note_id, line, created_at, updated_at) FROM '/Users/jq/3tep_gomi/clients_2.csv' WITH CSV DELIMITER ',';
+
\COPY clients(id, user_id, note_id, created_at, updated_at) FROM '/Users/jq/3tep_gomi/clients_2.csv' WITH CSV DELIMITER ',';
  
 
...
 
...
 
</pre>
 
</pre>
:- シーケンス編集
+
* Others
<pre>
 
シーケンスの最大値確認
 
select max(id) from clients;
 
 
 
シーケンスを最大値以上に設定
 
select setval ('clients_id_seq', 5128);
 
</pre>
 
:- list_idにnullがあるとき
 
<pre>
 
リスト「未分類」を作りそのidを入れる
 
update clients set list_id = 102 where list_id is null;
 
</pre>
 
 
 
==== Others ====
 
* 旧ClientsをClientsとOthersに分ける 寺ごと(ノートごと)に出し入れする
 
 
<pre>
 
<pre>
 
エクスポート
 
エクスポート
\COPY (select user_id, jiin_id, ie_id, name, yomi, nusi, each_order, generation, created_at, updated_at from clients where jiin_id = 1 order by ie_id asc) TO '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
+
\COPY (select user_id, jiin_id, ie_id, name, yomi, nusi, each_order, table_order, generation, created_at, updated_at from clients where jiin_id = 1 order by ie_id asc) TO '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
  
 
...
 
...
105行目: 86行目:
 
<pre>
 
<pre>
 
インポート
 
インポート
\COPY others(user_id, note_id, client_id, name, yomi, nusi, line, generation, created_at, updated_at) FROM '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',';
+
\COPY others(user_id, note_id, client_id, name, yomi, nusi, line1, line2, generation, created_at, updated_at) FROM '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',';
  
 
...
 
...
 
</pre>
 
</pre>
  
==== おまけ ====
+
==== Categories → Lists ====
* エラー
 
:- Othersのclient_idがClientsのidにないとき
 
<pre>
 
ERROR:  insert or update on table "others" violates foreign key constraint "fk_rails_10377da6e2"
 
DETAIL:  Key (client_id)=(26) is not present in table "clients".
 
</pre>
 
:- others_1.csvから不要なclient_idを含む行の削除方法
 
<pre>
 
作業用データベースを作る
 
% psql postgres
 
postgres=# create database x_0226;
 
 
 
作業用テーブルを作る
 
% psql x_0226
 
x_0226=# CREATE TABLE clients(id serial, client_id int);
 
x_0226=# CREATE TABLE others(id serial, client_id int);
 
 
 
エクスポートしたcsvから不要な列を削除してそれぞれにインポートする
 
x_0226=# \COPY clients(client_id) FROM '/Users/jq/3tep_gomi/clients_1.csv' WITH CSV DELIMITER ',';
 
x_0226=# \COPY others(client_id) FROM '/Users/jq/3tep_gomi/others_1_c.csv' WITH CSV DELIMITER ',';
 
 
 
EXCEPTを使ってClientsにないOthersのclient_idを拾う
 
x_0226=# SELECT client_id FROM others EXCEPT SELECT client_id FROM clients order by client_id asc;
 
 
 
作業用テーブルを作る
 
x_0226=# create table x_others(id serial, user_id int, note_id int, client_id int, name varchar, yomi varchar, nusi boolean, line int, generation varchar, created_at timestamp, updated_at timestamp);
 
 
 
others_1.csvをインポートする
 
x_0226=# \COPY x_others(user_id, note_id, client_id, name, yomi, nusi, line, generation, created_at, updated_at) FROM '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',';
 
 
 
ClientsにないOthersのclient_idを含む行を削除する
 
x_0226=# delete from x_others where client_id in (SELECT client_id FROM others EXCEPT SELECT client_id FROM clients order by client_id asc);
 
 
 
エクスポート
 
x_0226=# \COPY (select user_id, note_id, client_id, name, yomi, nusi, line, generation, created_at, updated_at from x_others order by client_id asc) TO '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
 
 
 
tep3のOthersにインポートする
 
tep3_development=# \COPY others(user_id, note_id, client_id, name, yomi, nusi, line, generation, created_at, updated_at) FROM '/Users/jq/3tep_gomi/others_1.csv' WITH CSV DELIMITER ',';
 
</pre>
 
 
 
==== Lists ====
 
 
* 旧Categoriesのset_id1を寺ごとに抜き出し Listsに入れる
 
* 旧Categoriesのset_id1を寺ごとに抜き出し Listsに入れる
 
<pre>
 
<pre>
165行目: 105行目:
 
...
 
...
 
</pre>
 
</pre>
:- シーケンス編集
 
<pre>
 
シーケンスの最大値確認
 
select max(id) from lists;
 
 
シーケンスを最大値以上に設定
 
select setval ('lists_id_seq', 128);
 
</pre>
 
 
 
==== ListsのidをClientsのlist_idに入れる ====
 
==== ListsのidをClientsのlist_idに入れる ====
 
<pre>
 
<pre>
216行目: 147行目:
 
* インポート
 
* インポート
 
\COPY categories(id, user_id, note_id, content, line, created_at, updated_at) FROM '/Users/jq/3tep_gomi/category_1_1.csv' WITH CSV DELIMITER ',';
 
\COPY categories(id, user_id, note_id, content, line, created_at, updated_at) FROM '/Users/jq/3tep_gomi/category_1_1.csv' WITH CSV DELIMITER ',';
</pre>
 
:- シーケンス編集
 
<pre>
 
シーケンスの最大値確認
 
select max(id) from categories;
 
 
シーケンスを最大値以上に設定
 
select setval ('categories_id_seq', 128);
 
 
</pre>
 
</pre>
 
<pre>
 
<pre>
235行目: 158行目:
 
<pre>
 
<pre>
 
エクスポート
 
エクスポート
\COPY (select properties.user_id, properties.jiin_id, properties.ie_id, properties.category_id, properties.created_at, properties.updated_at from properties join categories on properties.category_id = categories.id where properties.jiin_id = 1 and categories.set_id = 2 order by ie_id asc, category_id asc) TO '/Users/jq/3tep_gomi/client_category_1_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
+
\COPY (select properties.user_id, properties.jiin_id, properties.ie_id, properties.category_id, properties.created_at, properties.updated_at from properties join categories on properties.category_id = categories.id where properties.jiin_id = 1 and categories.set_id = 2) TO '/Users/jq/3tep_gomi/client_category_1_1.csv' WITH CSV DELIMITER ',' FORCE QUOTE * NULL AS '' HEADER;
  
 
...
 
...
252行目: 175行目:
 
</pre>
 
</pre>
  
<pre>
+
=== インポート ===
</pre>
+
\COPY notes(user_id, name, kind, meeting_time, role, created_at, updated_at) FROM '/Users/jq/3tep_gomi/notes.csv' WITH CSV DELIMITER ',';
<pre>
+
 
</pre>
+
\COPY others(user_id, note_id, client_id, name, yomi, nusi, order1, order2, generation, created_at, updated_at) FROM '/Users/jq/3tep_gomi/others.csv' WITH CSV DELIMITER ',';
<pre>
 
</pre>
 

wikipokpokへの投稿はすべて、クリエイティブ・コモンズ 表示-継承 (詳細はWikipokpok:著作権を参照)のもとで公開したと見なされることにご注意ください。 自分が書いたものが他の人に容赦なく編集され、自由に配布されるのを望まない場合は、ここに投稿しないでください。
また、投稿するのは、自分で書いたものか、パブリック ドメインまたはそれに類するフリーな資料からの複製であることを約束してください。 著作権保護されている作品は、許諾なしに投稿しないでください!

このページを編集するには、下記の確認用の質問に回答してください (詳細):

取り消し | 編集の仕方 (新しいウィンドウで開きます)