Hello
I am new to MonetDB and I want to use it together with the "Tableau Desktop" (Version 8) software running on a Mac, later possibly also together with a Tableau Server. However, the first attempts are discouraging: when attempting to connect to a MonetDB database, the Tableau Desktop software seems to get stuck in an endless loop.
Some details: I run "MonetDB-11.15.11-i686-Darwin-9" on a Mac with OS X 10.6.8. I was able to create my first MonetDB database under OS X and define a …
[View More]simple 10-rows test table. The Tableau software runs under Windows 7 within Parallels Desktop 8. I installed the "2013-06-19 18:20 2.4M MonetDB ODBC driver, 32 bit" under Windows, and used the Administrative Tool "Data Sources (ODBC)" provided by Windows to configure the MonetDB DSN. In Tableau I finally selected Connect to Data/Other data bases (ODBC) and I was able to select a Table. Then I pressed OK – and Tableau got stuck in the process.
I also tried using a custom SQL-query (SELECT * FROM "TestTable"). Here Tableau was able to establish a live connection to the MonetDB, but when working with the table, i.e. when dragging dimensions and measures into the rows and columns shelfs, Tableau announced connection errors.
Does it make sense to proceed with this project? Any infos on the following configurations would be highly appreciated:
MonetDB on a Mac <--> Tableau Desktop on a Mac
MonetDB on a Linux server <--> Tableau Desktop on a Mac
MonetDB on a Linux server <--> Tableau Server (Windows)
Thanks
Dimitrios
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
Dimitrios Gyalistras
Synergy BTC AG
Buristrasse 49
CH–3006 Bern
Switzerland
Tel: +41 78 602 54 09
Mail: gyalistras(a)synergy.ch
Web: www.synergy.ch
––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
[View Less]
Hi all,
I have some slow queries that I want to accelerate by utilizing
information about sorting.
My table definition: create table genomics.grch36 (site bigint, base
char(1));
I use COPY INTO to populate the table.
The source file size is 40GB and contains more than 3 billion rows.
I can guarantee that the data in file is ordered by site.
I query the data like this:
sql>select base from genomics.grch36 where site between 10000 and 10010;
+------+
| base |
+======+
| N |
| T |
| …
[View More]A |
| A |
| C |
| C |
| C |
| T |
| A |
| A |
| C |
+------+
11 tuples (5m 23s)
I think 5 minutes seem too much for this query.
Primary key or an index on 'site' don't work or at least aren't
recognized in query execution.
I think MonetDB would benefit when knowing that the data is ordered by
site. Wouldn't it?
Because I know that the data is ordered by 'site', how can I tell
MonetDB about this fact to speed up the query?
Any suggestions?
Regards,
Sebastian
[View Less]
Hello All,
We are evaluating monetdb for use as a tick database. We are storing all the
data into a single table. Our table has a column for timestamp and a few
other fields. We wish to run queries against it, the most useful of which is
to return all entries within a given timestamp range. This query takes a
long time to execute for even a 15 minute interval (about 40 to 60 seconds).
We have noted that the system RAM usage goes up to the maximum (almost 8GB)
while we run such queries on …
[View More]monetdb. We wanted to understand whether
installing more RAM (say, we upgrade to 16 GB) will result in a significant
performance improvement for such queries on monetdb.
Also, if this is the case, we would like to know, how much RAM is monetdb
optimised for?
The following is the specification of our server:
Intel Xeon X3430 2.4Ghz
64Bit
8Gb Ram
500Gb HDD - Raid0
Running on Windows Server 2008 R2.
We are using the 20130212 build of monetdb.
Thank you,
Anshuman
[View Less]
Would anyone be able to recommend an approach or software on either Windows or Linux that would enable me to replicate the MonetDB mail archives to my local machine to make it easer to search for answers and study topics before posting questions asked before.
Even if I could get an export of the whole thing in some format that be consumed by a mail client.
I did read that mailman is capable of such archives, but it seems to require a real administrative user and password to create the archive.…
[View More]
I wouldn't expect a frequent completely up to date copy of the archive, just a backup that is closer to now and stays reasonably up to date (few months)
Thanks for any suggestions.
Brandon
Sent from my iPhone
[View Less]
Hi all,
I'm trying to figure out how much storage MonetDB (Feb2013-SP2) uses
when populated with my data on a fresh database.
Here is my table definition: create table genomics.grch36 (site bigint,
base char(1));
I'm populating the table via COPY INTO.
The source file size is 40GB and contains more than 3 billion rows.
Following the suggestions on
http://www.monetdb.org/Documentation/Userguide/diskspace, I get
following result for the SQL query:
sql>select * from storage() where "…
[View More]table" = 'grch36';
+----------+--------+--------+--------+----------+------------+-----------+-------------+----------+---------+--------+
| schema | table | column | type | location | count |
typewidth | columnsize | heapsize | indices | sorted |
+==========+========+========+========+==========+============+===========+=============+==========+=========+========+
| genomics | grch36 | site | bigint |
12/1252 | 3137459420 | 8 | 25099675360 | 0 | 0 |
false |
| genomics | grch36 | base | char |
12/1247 | 3137459420 | 1 | 6274918840 | 131072 | 0 |
false |
+----------+--------+--------+--------+----------+------------+-----------+-------------+----------+---------+--------+
I assume that 'columnsize' refers to the storage demand. I'm I right?
Based on the numbers given, I assume a storage need of round about 31 GB
(without any compression).
Calling 'du -h' on my database directory confirms this assumption.
4,0K ./bat/14
44K ./bat/10
108K ./bat/07
476K ./bat/01
30G ./bat/12
256K ./bat/02
4,0K ./bat/03
4,0K ./bat/HC
4,0K ./bat/16
4,0K ./bat/17
12K ./bat/13
4,0K ./bat/LEFTOVERS
28K ./bat/BACKUP
4,0K ./bat/15
4,0K ./bat/11
12K ./bat/04
30G ./bat
8,0K ./sql_logs/sql
12K ./sql_logs
4,0K ./box
30G .
But why is the 'columnsize' of the 'base' column something about 6GB
whereas 3 billion times 1 Byte (for a 1 char) is 3GB?
For the 'site' column this calculation works!
Another question that comes into my mind:
The number of distinct values in the 'base' column is 5.
Thus, assuming a ideal dictionary encoding 3 Bit would be sufficient to
encode all values.
Since MonetDB uses dictionary compression, can it utilize this fact?
Regards,
Sebastian
[View Less]
Hi,
It is me again. :(
I'm trying to "truncate" according to
http://www.monetdb.org/Documentation/SQLreference/Updates using DELETE
ALL FROM statement. But what I get is syntax error. :(
ceos@lux-analytics:~$ mclient -h localhost -d zkdev1 -u drmaxtst -p 50000
password:
Welcome to mclient, the MonetDB/SQL interactive terminal (Feb2013-SP3)
Database: MonetDB v11.15.11 (Feb2013-SP3),
'mapi:monetdb://lux-analytics:50000/zkdev1'
Type \q to quit, \? for a list of available commands
auto commit …
[View More]mode: on
sql>delete all from crmkarta;
syntax error, unexpected ALL, expecting FROM in: "delete all"
sql>
Thank you for any hints.
Best regards,
Radovan
--
__________________________
Radovan Bičiště
[View Less]
Hi,
I am new to monetdb and considering using it for our Analytics need. Is there any rpm available for
Centos 5 / Centos 6
RedHat 5 / Redhat 6
for its latest release or do I have to build from source ?
Thanks,
Sanjoy
Hello,
I must be doing something horribly wrong. I have a stored procedure
where I have temporary table declared, something like:
DECLARE TABLE t1tmp (id bigint);
Then in the same procedure I do INSERT INTO t1tmp SELECT .....;
When I do Count(*) from temporary table in the procedure it returns 0.
Fun starts after procedure called. When call is done temporary table is
full of data as expected. But it seems the data is nowhere to be found
when I look for them inside the procedure.
Am I missing …
[View More]something again?
Thanks for any hints,
Radovan
TEST CASE:
CREATE PROCEDURE test1()
BEGIN
DECLARE TABLE t1tmp (bigint);
INSERT INTO t1tmp SELECT id FROM t1;
DECLARE v_cont BIGINT;
-- returns 0
SELECT COUNT(*) INTO v_count FROM t1tmp;
END;
CALL test1;
-- actually returns the data
SELECT * FROM t1tmp;
--
__________________________
Radovan Bičiště
ceos data s.r.o.
třída SNP 402/48
500 03 Hradec Králové
Czech Republic
[View Less]
hi all,
What's the correct way to use FIT DATA VAULT in mal?
I got the following errors and still havent try out the right syntax ......
[svomhpc@localhost /home/data2]$>/home/data1/opt/MonetDB.fits/bin/mclient -lmal -dmydb
Welcome to mclient, the MonetDB interactive terminal (unreleased)
Type \q to quit, \? for a list of available commands
mal>?fits.attach()
pattern fits.attach(fname:str):void
address FITSattach;
comment Open a FITS file and return catalog of the table HDUs
…
[View More]mal>call fits.attach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
MAPI = (monetdb) /tmp/.s.monetdb.50000
QUERY = call fits.attach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
ERROR = !SyntaxException:parseError:call fits.attach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
!SyntaxException:parseError: ^';' expected
mal>
mal>
mal>call fitsattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
MAPI = (monetdb) /tmp/.s.monetdb.50000
QUERY = call fitsattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
ERROR = !SyntaxException:parseError:call fitsattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
!SyntaxException:parseError: ^';' expected
mal>
mal>call FITSattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
MAPI = (monetdb) /tmp/.s.monetdb.50000
QUERY = call FITSattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
ERROR = !SyntaxException:parseError:call FITSattach('/home/data3/gwacdata/20130111_177d550752_60d851283-530.fit');
!SyntaxException:parseError: ^';' expected
Thanks!
Meng
[View Less]