[MonetDB-users] XQuery Suggestions

Hello, please advise why these 2 queries do not work. Samples would be nice. module namespace foo = "xrpc-test-function"; declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) }; declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; Thank you!

Hi Max, I guess the error message explains itself: ======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function"; declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) }; declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in /ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c (ns_resolve), line 783 ======== I.e., namespace "qflex" is (obviously) not defined. Stefan On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |

Thanks for your reply but this is not the problem.
I removed my namespace declaration on purpose. Everything validates for me
in xmlspy.
Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in /ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c (ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
------------------------------------------------------------------------------
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/http://www.cwi.nl/%7Emanegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com

Hello Max,
Have a look at the documentation and tutorial:
http://www.monetdb.nl/projects/monetdb/XQuery/QuickTour/index.html
This section of the documentation both provides examples for read-only
queries and for XQUF updates.
Wouter
2009/4/7 Max Fedorov
Thanks for your reply but this is not the problem. I removed my namespace declaration on purpose. Everything validates for me in xmlspy. Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
wrote: Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in /ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c (ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer {
count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p..sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users

Wouter, thanks a lot, your link is very helpful. I changed my function to:
declare updating function foo:addQueueStat($docName as xs:string, $elem as
element())
{
do insert $elem as first into doc($docName)/qflex:queueStats
};
Now I am getting !ERROR: updating read-only document
My guess is that documents added through Admin GUI are read-only by default.
Thanks.
On Tue, Apr 7, 2009 at 2:31 AM, Wouter Alink
Hello Max, Have a look at the documentation and tutorial:
http://www.monetdb.nl/projects/monetdb/XQuery/QuickTour/index.html
This section of the documentation both provides examples for read-only queries and for XQUF updates.
Wouter
2009/4/7 Max Fedorov
: Thanks for your reply but this is not the problem. I removed my namespace declaration on purpose. Everything validates for me in xmlspy. Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
wrote: Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as
xs:integer
{ count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in
/ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c
(ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer {
count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p..sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/http://www.cwi.nl/%7Emanegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com

On Tue, Apr 07, 2009 at 09:14:00AM -0400, Max Fedorov wrote:
Wouter, thanks a lot, your link is very helpful. I changed my function to:
declare updating function foo:addQueueStat($docName as xs:string, $elem as element()) { do insert $elem as first into doc($docName)/qflex:queueStats };
Now I am getting !ERROR: updating read-only document My guess is that documents added through Admin GUI are read-only by default.
From http://monetdb.cwi.nl/XQuery/QuickTour/adminGUI/index.html : " Here, we add the book.xml document from the Books tutorial. If the percentage you are also asked to specify is non-zero, you will get an updatable collection; by default the value is 0 which makes the data stored in MonetDB/XQuery read-only. " Stefan
Thanks.
On Tue, Apr 7, 2009 at 2:31 AM, Wouter Alink
wrote: Hello Max, Have a look at the documentation and tutorial:
http://www.monetdb.nl/projects/monetdb/XQuery/QuickTour/index.html
This section of the documentation both provides examples for read-only queries and for XQUF updates.
Wouter
2009/4/7 Max Fedorov
: Thanks for your reply but this is not the problem. I removed my namespace declaration on purpose. Everything validates for me in xmlspy. Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
wrote: Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as
xs:integer
{ count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in
/ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c
(ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer {
count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p..sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/http://www.cwi.nl/%7Emanegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |

On Mon, Apr 06, 2009 at 08:51:24PM -0400, Max Fedorov wrote:
Thanks for your reply but this is not the problem.
Ok --- well, then you might want to reveal what your actual problem is ... and you also might want to reveal which version of MonetDB/XQuery you are using on which operating system, e.g., by sharing the output of Mserver --version Stefan
I removed my namespace declaration on purpose. Everything validates for me in xmlspy. Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
wrote: Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in /ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c (ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice.
module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
------------------------------------------------------------------------------
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/http://www.cwi.nl/%7Emanegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |

One problem I see is the second function which has to be declared as an updating function: declare updating function foo:addQueueStat(...) Stefan Manegold wrote:
On Mon, Apr 06, 2009 at 08:51:24PM -0400, Max Fedorov wrote:
Thanks for your reply but this is not the problem.
Ok --- well, then you might want to reveal what your actual problem is ... and you also might want to reveal which version of MonetDB/XQuery you are using on which operating system, e.g., by sharing the output of Mserver --version
Stefan
I removed my namespace declaration on purpose. Everything validates for me in xmlspy. Do you have a working example of "count" and "do insert"?
On Mon, Apr 6, 2009 at 6:37 PM, Stefan Manegold
wrote: Hi Max,
I guess the error message explains itself:
======== $ cat /tmp/foo.xq -------- module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats }; ======== $ pf /tmp/foo.xq -------- bad usage of XML namespaces: at (6,60-6,74): unknown namespace in qualified name qflex:queueName # halted in /ufs/manegold/_/scratch0/Monet/Testing/Stable/source/pathfinder/compiler/semantics/ns.c (ns_resolve), line 783 ========
I.e., namespace "qflex" is (obviously) not defined.
Stefan
On Mon, Apr 06, 2009 at 04:59:52PM -0400, Max Fedorov wrote:
Hello, please advise why these 2 queries do not work. Samples would be nice. module namespace foo = "xrpc-test-function";
declare function foo:countQueueStats($docName as xs:string) as xs:integer { count(doc($docName)/qflex:queueStats/qflex:queueStat/qflex:queueName) };
declare function foo:addQueueStat($docName as xs:string, $myElement as element()) { do insert $myElement as last into doc($docName)/queueStats };
Thank you!
This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/http://www.cwi.nl/%7Emanegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Max Fedorov Netflexity, Ltd. tel: 267-408-3699 fax:888-201-7922 www.netflexity.com
------------------------------------------------------------------------------ This SF.net email is sponsored by: High Quality Requirements in a Collaborative Environment. Download a free trial of Rational Requirements Composer Now! http://p.sf.net/sfu/www-ibm-com _______________________________________________ MonetDB-users mailing list MonetDB-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-users
-- Sjoerd Mullender
participants (4)
-
Max Fedorov
-
Sjoerd Mullender
-
Stefan Manegold
-
Wouter Alink