Subject statement failed, SQLCODE = -607
Author yiorgos_psql
I try to create a simple view using isql:

CREATE VIEW VW_CUSTOMERS
AS

SELECT
"other_oid",
"name",
"remarks",
"code",
"VAT_No"
FROM
"t_others"
WHERE
"is_customer" = 1;

and I get:

statement failed, SQLCODE = -607
unsuccesfull metadata update


what do I do wrong?

thanx