I have four tables. Every table has just one column with 32768 rows, like:
|calculated|
|2.45644534|
|3.23323567|
[...]
Now I want to combine these four results/tables into one table with four columns, like:
|calc1|calc2|calc3|calc4|
[values]
There are no IDs or something else to identify unique rows. This is my query:
SELECT A.*, B.*, C.*, D.*
FROM
(
SELECT * FROM :REAL_RESULT
) AS A
JOIN
(
SELECT * FROM :PHASE_RESULT
) AS B
ON 1=1
JOIN
(
SELECT * FROM :AMPLITUDE_RESULT
) AS C
ON 1=1 [...]
Now the server is throwing this error:
Error: (dberror) 2048 - column store error: search table error: "TEST"."data::fourier": line 58 col 4 (at pos 1655): [2048] (range 3): column store error: search table error: [9] Memory allocation failed
What can I do now? Are there any other options? Thanks!