Questions tagged [vertica]

Vertica is an MPP column-store analytics database that runs on clusters of Linux servers or in the cloud. The original configuration (Enterprise mode) distributes data and query execution among nodes (typically with duplication). A newer configuration (Eon mode) separates compute from storage and relies on S3 for storage.

Vertica is a columnar database designed for data warehousing. Vertica is based on C-Store, which was an academic project involving academic and entrepreneur Michael Stonebraker (a co-founder of Vertica, Ingres, VoltDB) and colleagues from Brandeis University, Brown University, MIT, and University of Massachusetts Boston.

As part of the C-store architecture table data is stored on disk in columns rather than in rows. Columns are stored independently of other columns and allow for increased compression on storage and decreased I/O during query operations.

Vertica has advanced analytical and machine learning functions built-in.

Vertica is designed to run on clusters of Linux nodes. A Vertica cluster runs in a MPP (Massive Parallel Processing) fashion, and it is designed to scale linearly by adding nodes to the cluster.

Vertica clusters can be deployed on premise (in Enterprise Mode) or in the cloud (in either Enterprise Mode or Eon Mode). Enterprise Mode consists of Vertica nodes that share compute and storage resources. Eon Mode is a cloud based mode in which there is a separation of compute nodes (AWS EC2 instances) and storage (S3). This separation of compute and storage allows for rapid scalability (adding or removing compute nodes) without the need to rebalance data across the nodes in the cluster.

Veritca was purchased by HP in 2011, and then acquired by Micro Focus as part of the HPE merger in 2017. As such, Vertica is sometimes referred to in old documentation and community posts as HP Vertica or HPE Vertica.

Vertica comes with a command line utility called vsql for connecting to the database.

1420 questions
-2
votes
2 answers

Get the column date type in Vertica database

when i used PROJECTION_COLUMNS get column type it spent too much time. is there have another table or function to search column type?
Sanborn
  • 41
  • 8
-2
votes
2 answers

How does SQL LIMIT ordering work

If you select from a sql database and add a limit, and run it multiple times, the results will vary. However, when you want to select randomly from a database you usually do: order by random() limit n My question is how does sql limit ordering…
mt88
  • 2,855
  • 8
  • 24
  • 42
-2
votes
3 answers

Why my scheduled job is not working?

I define a job with crontab like this 0 2 * * * dbadmin . /home/dbadmin/back.sh it is not root I want to run this .sh file with dbadmin user. but when I checked it is not working. in the log it gives this: Feb 22 21:16:01 localhost crond[14634]:…
CompEng
  • 7,161
  • 16
  • 68
  • 122
-2
votes
2 answers

How do you remove time component from a timestamp?

How do you remove the time component from a timestamp for instance: 2014-01-01 12:00:01 To become 2014-01-01 00:00:00
c 2
  • 1,127
  • 3
  • 13
  • 21
-3
votes
1 answer

How to Express a 2-hour Interval from Now Backwards in SQL in DBVisualizer

in Vertica DB, I need to build a query selecting all rows with the timestamp within the past period of two hours from now. This doesn't work, however: select * from device_health_1 where timeframe >= current_timestamp - interval 2 hour NOW()…
Yan
  • 77
  • 4
-3
votes
1 answer

Migrate data from vertica to MYSQL

I am trying to migrate vertica table data to mysql for doing some analysis can we do using any tool ?? If not possible I have basic understanding of PHP Please suggest.
-4
votes
2 answers

Why is UNION ALL causing errors and how do I join my datasets?

I have similar datasets to the following TABLE1 Column1,Column2,Column3, ID1 ,ID2 ,Value1 TABLE2 Column1,Column2,Column3, ID3 ,ID2 ,Value2 I would like to get TABLE3 Column1,Column2,Column3 ID1 ,ID2 ,Value1 ID3 ,ID2 …
-4
votes
1 answer

Purpose of using projections in vertica database

I have a vertica database that using projections. I read vertica docs but docs generally talk about how to…
mr.wr
  • 32
  • 5
-4
votes
1 answer

Vertica Licensing Audit

Does anyone know what happens if a HP Vertica audit reveals higher than licensed usage? (Not by a whole lot, just a little -- Was contacted by HP just wondering what the fall out may be). Not really experienced with here, just looking for any past…
tcj123
  • 167
  • 1
  • 2
  • 10
-5
votes
2 answers

How can I generate 10 million random alphanumeric records in vertica sql?

I need to generate 100 million random alphanumeric 12 character records in the vertica database table or else any other way to generate 100mil random alphanumeric 12 character records file. Then i can load file in database. below are the example…
Krishna
  • 15
  • 4
1 2 3
94
95