Skip to content
Advertisement

Solving Query-Errors in Vertica [Vertica][VJDBC](4160) and [Vertica][VJDBC](4680)

I have some issues in getting my Vertica query to work correctly. Let’s assume I have a relation which is defined as follows:

and insert some example values:

Now, I would like to query the relation with the following query:

This query, however, throws the following error:

Execution error: [Vertica]VJDBC ERROR: Non-equality correlated subquery expression is not supported

I think this is because Vertica does not allow <=, >=, < and > comparisons within subqueries? See Vertica Documentation for Subquery Restrictions

So I tried to solve it by using BETWEEN:

This results in the same error:

Execution error: [Vertica]VJDBC ERROR: Non-equality correlated subquery expression is not supported

So I tried to ignore the condition and ran into another issue after executing the following query:

Which resulted in the following error:

Execution error: [Vertica]VJDBC ERROR: Self joins in UPDATE statements are not allowed [Vertica][VJDBC]Detail: Target relation “da592a51-45ee-4d3e-9983-e8a3e56fd852_2fd1ec98-bb71-4ad0-8d33-d751e209dcdd”.KOMM also appears in the FROM list

I found a “workaround” for this issue by replacing “from KOMM X” with “from (select * from KOMM) X”. This query does execute, however not as wanted (as you can imagine). The goal is to update the table with the NUM value, until the next higher NUM value appears in the table such that the table can finally be aggregated by only displaying the rows in which the NAM is ‘START’:

First row of result Second row of result

Unfortuantely, I am not able to find a solution for these issues, which is why I hope that you guys can help me out. Thank you in advance for your help and suggestions!

Best regards, MoDo

Advertisement

Answer

I understand your question so that you want a report of two rows in your example, containing the NUM value of a row with nam of ‘START’ and the last 5 characters of the message of the following row with nam of ‘END’. The only thing I could not figure out is where in the world you got the input for the string ‘GE’ in your new column unh_seg

I would try to use a completely different approach. It involves GROUP-ing, OLAP functions, and nested queries.

I see that we have two groups of rows (if we order by num) that have a sequence of one ‘START’ , one or more of something else, and one ‘END’ in the nam column.

We need an additional column to distinguish the two groups. And Vertica has a quite unique OLAP function CONDITIONAL_TRUE_EVENT() that comes in pretty handy here. It starts with 0 and increments by 1 every time the Boolean expression in the parentheses is true.

Let’s create and fill your table with the data types as I’d use them:

With the table built like this, I run the query below.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement