Cassandraのintをbigintに移行する最も簡単な方法は何ですか?私はbigint型の新しい列を作成し、基本的にはその列の値を設定するスクリプトを実行することを考えました=すべての行のint列の値、そして元の列を削除し、新しい列の名前を変更します。しかし、私は誰かがより良い選択肢を持っているかどうかを知りたいのですが、このアプローチは私とまったく同じではないからです。Cassandra int to bigint
0
A
答えて
1
ALTER
テーブルを変更してint
列をvarint
タイプに変更することができます。 the documentation約ALTER TABLE
およびdata types compatibilityのマトリックスをチェックします。
唯一の選択肢は、あなたが言ったことです:新しい列を追加し、行ごとにそれを設定します。最初の列を削除することは完全にオプションです。挿入を実行するときに値を割り当てないと、すべてがそのまま維持され、新しいレコードは領域を消費しません。
0
ALTER
テーブルにbigintをvarint
で保存することができます。例を見てください
[email protected]:demo> CREATE TABLE int_test (id int, name text, primary key(id));
[email protected]:demo> SELECT * FROM int_test;
id | name
----+------
(0 rows)
[email protected]:demo> INSERT INTO int_test (id, name) VALUES (215478936541111, 'abc');
[email protected]:demo> SELECT * FROM int_test ;
id | name
---------------------+---------
215478936541111 | abc
(1 rows)
[email protected]:demo> ALTER TABLE demo.int_test ALTER id TYPE varint;
[email protected]:demo> INSERT INTO int_test (id, name) VALUES (9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999, 'abcd');
[email protected]:demo> SELECT * FROM int_test ;
id | name
------------------------------------------------------------------------------------------------------------------------------+---------
215478936541111 | abc
9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 | abcd
(2 rows)
[email protected]:demo>
関連する問題
- 1. BigInt変換(gmp Bigint to botan bigint)
- 2. SQLite bigint to Datetime to C#
- 3. BigIntをノードjsからcassandraに挿入
- 4. はBIGINTとINT比較障害
- 5. BIGINT UNSIGNEDをINTに変換する
- 6. フラスコポストフォーク接続to cassandra
- 7. Go toの文字列to big Int?
- 8. SQL - 安全にダウンキャストBIGINT INTに
- 9. Go to int in
- 10. Signed Char to Int
- 11. Haxe Int to String
- 12. Decimal to Int Converter
- 13. キャストoff_t to int
- 14. Go [] int to rune
- 15. Python datetime to int
- 16. int to float/float
- 17. C++ int to char
- 18. C#int to byte []
- 19. PythonのInt to String
- 20. int to string、char * itoa
- 21. int array [] [] to jpg Java
- 22. mysql外部キーでbigintにintカラムを変更する
- 23. Bigint +演算子
- 24. (C++)2DベクトルChar to Int
- 25. C#ReadLine Variable String to Int
- 26. iOSチャートDouble to Int Swift
- 27. Python String to Int or None
- 28. openssl java to C++ read int issue
- 29. ndarray to pd.Seriesのintのリスト
- 30. Int * to Golangの文字列
私はバントタイプを見ていましたが、私はそれとbigintの違いが何であるか正確には分かりませんでした。私はvarintがJava BigIntegerにマップしているので、それは十分であるはずです。なぜなら、私が本当に気にしているのは、BigIntegerが技術的に上限を持たないと思うからです。カサンドラが宇宙などに関して懸念している限り、他の違いはありますか? – cloudwalker