Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Spaltendefinition nicht kompatibel mit gruppierter Spaltendefinition

Sind Sie sicher, dass columnRandom eine Zahl (38,0) ist? Im Orakel ZAHL !=ZAHL(38,0)

Lassen Sie uns zwei Tabellen erstellen.

create table src_table ( a number);
create table src_table2( a number(38,0));

select column_name,data_precision,Data_scale from user_tab_cols where table_name like 'SRC_TABLE%';

Ergebnis der Abfrage ist. Definitionen von Spalten sind unterschiedlich.

+-------------+----------------+------------+
| Column_name | Data_Precision | Data_scale |
+-------------+----------------+------------+
| A           |                |            |
| A           |             38 |          0 |
+-------------+----------------+------------+

Und wenn ich versuche, einen Cluster für den ersten Tisch zu erstellen.

CREATE TABLE Table_cluster
CLUSTER myLovelyCluster (a)
AS SELECT * FROM src_table ;

ORA-01753: column definition incompatible with clustered column definition

Für 2. ist alles ok.

CREATE TABLE Table_cluster
CLUSTER myLovelyCluster (a)
AS SELECT * FROM src_table2 ;

Wenn Sie cast in select hinzufügen. Auch die Ausführung stimmt.

CREATE TABLE Table_cluster CLUSTER myLovelyCluster  (a)
AS SELECT cast(a as number(38,0)) FROM src_table;