What I'm trying to do:
update table_name set field2 = substring(REGEXP_SUBSTR(field1, 'item=[0-9]+', charindex('item=', field1)), 6)
But I'm getting
SQL Anywhere Error -728: Update operation attempted on non-updatable remote query
Can I solve it somehow? I don't use local/remote tables. I use one table.
So I guess I found soltion... even 2. Unfortunately still no way to use REGEXP_SUBSTR... I do:
first
or
Something like this
I suggest to double check that table_name is actually a table, but not a view. If it is a view, you may see its definition with sp_helptext command, such as
or