Tagged Questions
Vertica is a column-based database that runs on clusters of Red Hat Enterprise Linux servers.
3
votes
2answers
606 views
Using an ODBC application with a JDBC driver
My company uses Vertica. We have Python applications that connect to it with pyodbc. I do most of my development on a Mac (Snow Leopard) and unfortunately Vertica has not released ODBC drivers for ...
2
votes
3answers
122 views
Advantages of databases like Greenplum or Vertica compared to MongoDB or Cassandra
I am currently working in a few projects with MongoDB and Apache Cassandra respectively. I am also using Solr a lot and I am handling "lots" of data with them (approx. 1-2TB). I've heard of Greenplum ...
2
votes
4answers
120 views
yet another date gap-fill SQL puzzle
I'm using Vertica, which precludes me from using CROSS APPLY, unfortunately. And apparently there's no such thing as CTEs in Vertica.
Here's what I've got:
t:
day | id | metric | d_metric
...
2
votes
4answers
492 views
What database tool do you use with Vertica besides vsql?
I was wondering what database tools (not sure of the correct technical term, but something like SQL Server Management studio or phpAdmin) people use with Vertica.
I have used WinSQL in the past, but ...
2
votes
2answers
242 views
Setting default schema for Vertica Database
I am building a web application using Play! with Vertica database as back-end. The JDBC connection string for Vertica contains the server and database name, but my tables are under a specific schema ...
2
votes
4answers
889 views
does anyone know the format of an odbc connection string for vertica?
I'm using the following:
DRIVER={Vertica ODBC Driver 4.1};
SERVER=lnxtabdb01.xxxx.com;
PORT=5433;
DATABASE=vertica;
USER=dbadmin;
PASSWORD=vertica;
OPTION=3;
i'm getting this error and I just ...
2
votes
1answer
255 views
Creating WCF DataService with database other than SQL Server
We would like to expose data we have residing in a Vertica database via the WCF Data Services. (Ultimately, we want to access the data in Excel's pivot tables features, and I've created an Excel ...
1
vote
4answers
222 views
Why do Column oriented databases such as Vertica/InfoBright/GreenPlum make a fuss of Hadoop?
What is the point in feeding an Hadoop cluster and using that cluster to feed data into a Vertica/InfoBright datawarehouse ?
All thse vendor keep saying "we can connect with Hadoop", but I don't ...
1
vote
1answer
350 views
Creating a connection to Vertica database in python using adodbapi
Does anyone know what are the parameters for creating a connection string to Vertica database using adodbapi? I cannot use pyodbc, because it does not work with IronPython.
I have tried:
...
1
vote
1answer
163 views
Is there a “Force Index” equivalent in Vertica?
Is there a "Force Index" from MySQL equivalent in Vertica DB?
1
vote
1answer
489 views
Datawarehouse duplicate dimension rows
We're starting to load up a datawarehouse with data from event logs. We have a normal star schema where a row in the fact table represents one event. Our dimension tables are a typical combination ...
0
votes
3answers
56 views
How to order by a varchar column numerically in vertica database?
How to order by a varchar column numerically in vertica database?
For example we can add a +0 in the order by clause in oracle to sort a varchar column numerically.
Thanks!
0
votes
1answer
133 views
php vertica odbc configuration in amazon ec2
Am need to configure vertica odbc in amazon ec2 machines to fetch datas from existing database for php application. am configured mysql odbc in local ubuntu and run the php examples. But am not sure ...
0
votes
3answers
71 views
Does Eclipse Link work together with Vertica
i'm currently testing vertica. Since vertica has a jdbc driver it should be possible to get it working.
Is there a simple way to get Eclipse link to support vertica?
Are there alternative orm ...
0
votes
0answers
60 views
In Vertica, should you factor out strings into their own logical tables?
Suppose your logical table is:
CREATE TABLE employee(
name VARCHAR,
university VARCHAR
);
Now you have only a few universities. Therefore, you could factor out the university name:
CREATE ...
0
votes
0answers
201 views
Optimizing a Vertica SQL query to do running totals
I have a table S with time series data like this:
code:
key day delta
For a given key, it's possible but unlikely that days will be missing.
I'd like to construct a cumulative column from the ...
0
votes
2answers
87 views
How do I display the query time when a query completes in Vertica?
When using vsql, I would like to see how long a query took to run once it completes. For example when i run:
select count(distinct key) from schema.table;
I would like to see an output like:
5678
...
0
votes
1answer
216 views
How to escape quotes in strings in vertica (vsql)?
So I need to insert some values into a vertica database (via vsql), which may contain quotes and all sorts of special characters. But vertica does not seem to understand character escaping. For ...
0
votes
3answers
182 views
Column store on top of hadoop?
Is there a column store similar to Vertica that is built on top of Hadoop.. I am not talking about HBase as it is sparse matrix store and can not get the level of compression that can be achieved by ...
0
votes
1answer
39 views
In Django, queries are generated with “::text” casting, how can I turn that off?
SELECT "snore_notification"."id", "snore_notification"."acknowledged",
"snore_notification"."active", "snore_notification"."classname",
"snore_notification"."elementclass", ...
0
votes
3answers
218 views
How do I Put Several Select Statements into Different Columns
I basically have 7 select statements that I need to have the results output into separate columns. Normally I would use a crosstab for this but I need a fast efficient way to go about this as there ...
0
votes
2answers
328 views
How do I do a Crosstab in Vertica
What is the Vertica equivalent of crosstab or pivot table found in PostgreSQL and other RDBMS's?
0
votes
2answers
204 views
Given Start Time , End Time & Secs. Obtain secs in a specific Hour
I'm using Vertica Database. I am trying to get the total secs in a particular hour from the following example session data. Any sample SQL code would be very helpful - Thanks
start time ...