marcothesane
Administrator
marcothesane Administrator
Reactions
-
Re: Prevent specific column value-rows in a Vertica table
I can imagine two ways - both not too effective, but there you are. This CSV file: dbadmin@gessnerm-HP-ZBook-15-G3:~/data$ cat foo.csvid,org,nam1,1,arthur1,2,arthur1,3,ford1,1,trillian1,1,zaphod1,1,s… (View Post)1 -
Re: Does update on a partition lock the whole table ?
Then, yes, I'm afraid. If you're updating a table through two sessions in parallel - never mind the partitions, the lock goes to the whole table. To avoid that, it may become nasty. One swa… (View Post)1 -
Re: Expert advice on slow running query
I agree with @VValdar - the OVER() can be costly. Try this workaround: Add this WITH clause at the beginning of the query: WITHmaxb AS ( SELECT max(throughput_in_bit_per_s) AS b_max_throughput_in_bit… (View Post)1 -
Re: ERROR: Too many ROS containers exist for the following projections
Hi MrBudy01 Yes, you can perform multi-row value insert as in specified in DBeaver. If you perform a multi-row value insert into a table mystuff, DBeaver will create a statement: INSERT INTO mystuff … (View Post)1 -
Re: SQL Reserved Words
Not quite. Trying to create a table with those column names - I do get an error in the first wrong column name: 152 -- out ERROR 4856: Syntax error at or near "ALL" at character 24153 -- ou… (View Post)1


















