Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2011-09-16 Thread marc_firth
this message in context: http://postgresql.1045698.n5.nabble.com/GENERAL-CUBE-ROLLUP-GROUPING-SETS-tp1868659p4810233.html Sent from the PostgreSQL - general mailing list archive at Nabble.com. -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription

Re: [GENERAL] cube problem

2007-06-08 Thread Alexander Staubo
On 6/8/07, ABHANG RANE [EMAIL PROTECTED] wrote: Hi, I have a table with one column as real[]. Now if I want to make cubes out of each of these arrays, is there a way in postgre I can do it. I guess cube operator is not defined for real[] but can I create cubes if the column was integer[]. If yes

[GENERAL] cube for real[]

2007-06-07 Thread ABHANG RANE
Hi, I have a table with one column as real[]. Now if I want to make cubes out of each of these arrays, is there a way in postgre I can do it. I guess cube operator is not defined for real[] but can I create cubes if the column was integer[]. If yes please may I know how. Thanks Abhang

Re: [GENERAL] cube for real[]

2007-06-07 Thread Michael Glaesemann
On Jun 7, 2007, at 10:27 , ABHANG RANE wrote: I have a table with one column as real[]. Now if I want to make cubes out of each of these arrays, is there a way in postgre I can do it. I guess cube operator is not defined for real[] but can I create cubes if the column was integer[]. If

[GENERAL] cube problem

2007-06-07 Thread ABHANG RANE
Hi, I have a table with one column as real[]. Now if I want to make cubes out of each of these arrays, is there a way in postgre I can do it. I guess cube operator is not defined for real[] but can I create cubes if the column was integer[]. If yes please may I know how. Actually I would

[GENERAL] cube for real[]

2007-06-06 Thread ABHANG RANE
Hi, I have a table with one column as real[]. Now if I want to make cubes out of each of these arrays, is there a way in postgre I can do it. I guess cube operator is not defined for real[] but can I create cubes if the column was integer[]. If yes please may I know how. Thanks Abhang

Re: [GENERAL] CUBE SYNTAX

2007-05-29 Thread Gregory Stark
David Fetter [EMAIL PROTECTED] writes: On Sun, May 27, 2007 at 01:23:48PM -0400, ABHANG RANE wrote: Hi, I need to use the cube operator in postgresql 8.2. Whats the syntax for the cube or a link to the documentation which clearly explains how to use cube operator syntactically. There is a

Re: [GENERAL] CUBE SYNTAX

2007-05-28 Thread David Fetter
On Sun, May 27, 2007 at 01:23:48PM -0400, ABHANG RANE wrote: Hi, I need to use the cube operator in postgresql 8.2. Whats the syntax for the cube or a link to the documentation which clearly explains how to use cube operator syntactically. There is a contrib module for cube.

[GENERAL] CUBE SYNTAX

2007-05-27 Thread ABHANG RANE
Hi, I need to use the cube operator in postgresql 8.2. Whats the syntax for the cube or a link to the documentation which clearly explains how to use cube operator syntactically. Thanks Abhang ---(end of broadcast)--- TIP 6: explain analyze is

Re: [GENERAL] CUBE SYNTAX

2007-05-27 Thread Michael Glaesemann
On May 27, 2007, at 12:23 , ABHANG RANE wrote: I need to use the cube operator in postgresql 8.2. Whats the syntax for the cube or a link to the documentation which clearly explains how to use cube operator syntactically. PostgreSQL does not have a native CUBE operator. There may be an

[GENERAL] cube

2007-05-27 Thread ABHANG RANE
Hi, Can you please let me know if anyone has used cube.c file in postgresql. I have installed the contrib modules required, but I just need to know how to implement cube operator on a table. Thanks Abhang ---(end of broadcast)--- TIP 9: In

Re: [GENERAL] cube

2007-05-27 Thread Adrian Klaver
On Sunday 27 May 2007 2:25 pm, ABHANG RANE wrote: Hi, Can you please let me know if anyone has used cube.c file in postgresql. I have installed the contrib modules required, but I just need to know how to implement cube operator on a table. Thanks Abhang ---(end

Re: [GENERAL] cube operations

2007-05-17 Thread ABHANG RANE
Hi, But now having 12 columns and multicolumn index, wont this slow down the search process. I mean in general retrieving 12 columns using a multicolumn index is slower or faster compared to an index on a 12 size array? Thanks Abhang Quoting John D. Burger [EMAIL PROTECTED]: ABHANG RANE

[GENERAL] cube operations

2007-05-16 Thread ABHANG RANE
Hi, I have a array column which has 12 real values in it. Basically these values represent co-ordinates in 12 dimensions for a substance. My main need is to find substances similar to a particular compound. Now I can do by calculating differences with each array in the whole table. But the

Re: [GENERAL] cube operations

2007-05-16 Thread Filip RembiaƂkowski
2007/5/16, ABHANG RANE [EMAIL PROTECTED]: Hi, I have a array column which has 12 real values in it. Basically these values represent co-ordinates in 12 dimensions for a substance. My main need is to find substances similar to a particular compound. Now I can do by calculating differences with

Re: [GENERAL] cube operations

2007-05-16 Thread John D. Burger
ABHANG RANE wrote: I have a array column which has 12 real values in it. Basically these values represent co-ordinates in 12 dimensions for a substance. My main need is to find substances similar to a particular compound. Now I can do by calculating differences with each array in the

Re: [GENERAL] cube operations

2007-05-16 Thread Oleg Bartunov
hacking contrib/intarray could help you. You need to add function which return the number of overlapped elements. Oleg On Wed, 16 May 2007, John D. Burger wrote: ABHANG RANE wrote: I have a array column which has 12 real values in it. Basically these values represent co-ordinates in 12

Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-11-14 Thread Bruce Momjian
Christopher Browne wrote: Centuries ago, Nostradamus foresaw when [EMAIL PROTECTED] (Nicolas Barbier) would write: 2006/10/28, Robert Treat [EMAIL PROTECTED]: On Tuesday 10 October 2006 15:19, stig erikson wrote: Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in

Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-10-28 Thread Robert Treat
On Tuesday 10 October 2006 15:19, stig erikson wrote: Hi. Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in future PostgreSQL versions? I could not find any info on the TODO-page. I've heard people mention it, but no one has ever come up with a solid proposal or patch.

Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-10-28 Thread Nicolas Barbier
2006/10/28, Robert Treat [EMAIL PROTECTED]: On Tuesday 10 October 2006 15:19, stig erikson wrote: Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in future PostgreSQL versions? I could not find any info on the TODO-page. I've heard people mention it, but no one has ever

Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-10-28 Thread Robert Treat
On Saturday 28 October 2006 19:47, Nicolas Barbier wrote: 2006/10/28, Robert Treat [EMAIL PROTECTED]: On Tuesday 10 October 2006 15:19, stig erikson wrote: Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in future PostgreSQL versions? I could not find any info on the

Re: [GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-10-28 Thread Christopher Browne
Centuries ago, Nostradamus foresaw when [EMAIL PROTECTED] (Nicolas Barbier) would write: 2006/10/28, Robert Treat [EMAIL PROTECTED]: On Tuesday 10 October 2006 15:19, stig erikson wrote: Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in future PostgreSQL versions? I

[GENERAL] CUBE, ROLLUP, GROUPING SETS?

2006-10-11 Thread stig erikson
Hi. Are there any plans to implement CUBE, ROLLUP and/or GROUPING SETS in future PostgreSQL versions? I could not find any info on the TODO-page. /stig ---(end of broadcast)--- TIP 4: Have you searched our list archives?

[GENERAL] Cube/Rollup/ and Connect by prior

2006-01-14 Thread Shawn Garbett
In oracle there is the idea of group by functions, i.e. cube and rollup that are very useful for reporting. I've not found an equivalent in PostgreSQL. What's the status of this? Can I write my own? Connect by Prior is a recursive query function for navigating tree data structures in oracle, i.e

Re: [GENERAL] Cube/Rollup/ and Connect by prior

2006-01-14 Thread Michael Glaesemann
On Jan 13, 2006, at 23:27 , Shawn Garbett wrote: In oracle there is the idea of group by functions, i.e. cube and rollup that are very useful for reporting. I've not found an equivalent in PostgreSQL. What's the status of this? Can I write my own? As far as I know, CUBE and ROLLUP haven't

[GENERAL] Cube

2005-01-25 Thread fabrizio . boco
Hi, I have just installed V 8.0 on XP and I have discovered some interesting functions related to cubes and crosstabs. Navigating on the site I was not able to find any information/documentation. Please help. Thank you Regards Fabrizio ---(end of

Re: [GENERAL] Cube

2005-01-25 Thread Oleg Bartunov
On Mon, 24 Jan 2005 [EMAIL PROTECTED] wrote: Hi, I have just installed V 8.0 on XP and I have discovered some interesting functions related to cubes and crosstabs. Navigating on the site I was not able to find any information/documentation. Please help. Why not use search engine ? For example,