Tagged Questions

MonetDB is an Open Source implementation of a Column Oriented Database. It is focused on analytical applications on a main memory resident database. It is developed at CWI in Amsterdam in the Netherlands.

learn more… | top users | synonyms

4
votes
4answers
148 views

Database recommendation

I have a collection of data that looks as follows: id name c1 c2 c3 c4 ... c50 ----------------------------------------------- 1 string1 0.1 0.32 0.54 -1.2 ... 2.3 2 ...
4
votes
6answers
210 views

To store images in SQL or not?

Generally, I had thought it was always better to store images in the filesystem and link to it via the database entry. However, I am trying to optimize my db design and am having a few questions. My ...
1
vote
1answer
92 views

Monetdb limit results displayed after query

I would like to know if there is any way of limiting the number of output results in monetdb, like it's done in Oracle for example, using: .SET RETCANCEL ON .SET RETLIMIT -1 EDIT: I have found the ...
0
votes
1answer
58 views

Query two databases in Monetdb

Im using monetdb and i have two databases on it "mydb" and "test". I want to get a sub-set of values from 'mydb' into 'test'. My code: insert into test.result select sum(chargfeeprepaid) from ...
0
votes
1answer
177 views

Is it worth trying MonetDB?

Has anyone had any experience with MonetDB? Currently, I have a MySQL database that is growing too large, and queries are getting too slow. According to column-oriented paradigm, insertions will be ...
0
votes
3answers
364 views

any .Net provider for MonetDB

are there any or any alternatives available ?
0
votes
1answer
228 views

Concat a list of elements and scores without using a recursive function in XQuery with Tijah extensions

For a university search engine project, I am using MonetDB with Tijah extensions. I've got a list of nodes, returned from a search string: let $qid := tijah:queryall-id($nexi) let $nodes := ...