Hi all,
I'm hoping someone could help me with this issue, not sure if the
general mailing list is the right place so apologies if this needs to be
directed else where.
We have several clients who are experiencing disconnects to our hosted
postgres server. From the server side we simply see a "cou
Hi all,
I'm hoping someone could help me with this issue, not sure if the
general mailing list is the right place so apologies if this needs to be
directed else where.
We have several clients who are experiencing disconnects to our hosted
postgres server. From the server side we simply see a "cou
On Tue, Feb 19, 2013 at 6:01 AM, René Romero Benavides wrote:
> **
>
> There's also one project called Postgres-XC which seems very promising,
> but I'm kind of wary about its level of maturity.
>
Project page is here: https://sourceforge.net/projects/postgres-xc/
The latest version 1.0 released
Thanks. I checked and hard links are not supported by the NAS.
Will look into getting another disk.
Yes, should upgrade out of 8.3.
Thanks again.
Claire
On Mon, 18 Feb 2013 08:21:19 -0800 Magnus Hagander
wrote
On Fri, Feb 15, 2013 at 6:25 PM, Claire McLis
My assumption was that WITH acted just like subselects, but apparently they
don't? Using WITH doesn't use the expected index.
(the below also at:
https://gist.github.com/joevandyk/839413fac7b3bdd32cb3/raw/cec015d16bed7f4e20ab0101b58ae74a1df1cdc2/gistfile1.txt
create view promotion_details1 as (
Tim Uckun wrote:
>> how do you want to determine which of the matching rows in the
>> other table to choose, and which to ignore?
>
> Any of the matching rows will do but I just want one.
Well, if you don't care, this might give you what you want.
select distinct on (x.first6) crm.*, x.*
from
> for every row in one of the tables? If so, how do you want to
> determine which of the matching rows in the other table to choose,
> and which to ignore?
In this case it's a simple lookup. Any of the matching rows will do
but I just want one.
--
Sent via pgsql-general mailing list (pgsql-ge
There's also one project called Postgres-XC which seems very promising, but
I'm kind of wary about its level of maturity.
On Monday, February 18, 2013 08:00:33 AM Albe Laurenz wrote:
> Tiemo Kieft wrote:
>
> > We are developing an application that uses various web analytics packages
> > (like Go
I'm also interested in leveraging something like that, these are my thoughts:
- Have a master server with all the data
- Have the data partitioned vertically (inheritance, exclusion constrains,
etc)
- One synchronous slave
- N asynchronous slaves that feed from the synchronous slave (cascading
r
Hi Merlin,
My plan is exactly what you've suggested, sending bytea to an external
server. The networking library I'm using uses threads, and this is where I
am creating threads.
On Mon, Feb 18, 2013 at 3:56 PM, Merlin Moncure wrote:
> On Mon, Feb 18, 2013 at 5:10 AM, Seref Arikan
> wrote:
> >
On Sat, Feb 16, 2013 at 10:30:44AM -0800, Kevin Grittner wrote:
- David Kerr wrote:
-
- > Also, if anyone else stumbles upon this, it only seems to happen with jruby.
-
- > I have standard ruby programs where this does not occur.
-
- It sounds like it is at least possible that it is the issue I
Sent from my iPad
On 18-Feb-2013, at 23:39, Bruce Momjian wrote:
> On Mon, Feb 18, 2013 at 11:25:44PM +0530, Atri Sharma wrote:
>> Is there any way to locally synchronise the threads in my code,and
>> send the requests to the PostgreSQL backend one at a time? Like a waiting
>> queu
On Mon, Feb 18, 2013 at 11:25:44PM +0530, Atri Sharma wrote:
> Is there any way to locally synchronise the threads in my code,and
> send the requests to the PostgreSQL backend one at a time? Like a waiting
> queue in my code?
> >>>
> >>> Is this from the client code? That is easy f
Sent from my iPad
On 18-Feb-2013, at 22:58, Bruce Momjian wrote:
> On Mon, Feb 18, 2013 at 10:46:39PM +0530, Atri Sharma wrote:
>>
>>
>> Sent from my iPad
>>
>> On 18-Feb-2013, at 22:38, Bruce Momjian wrote:
>>
>>> On Mon, Feb 18, 2013 at 10:33:26PM +0530, Atri Sharma wrote:
>> While
On Mon, Feb 18, 2013 at 10:46:39PM +0530, Atri Sharma wrote:
>
>
> Sent from my iPad
>
> On 18-Feb-2013, at 22:38, Bruce Momjian wrote:
>
> > On Mon, Feb 18, 2013 at 10:33:26PM +0530, Atri Sharma wrote:
> While your threads are executing, your query can't be cancelled --
> only a har
Sent from my iPad
On 18-Feb-2013, at 22:38, Bruce Momjian wrote:
> On Mon, Feb 18, 2013 at 10:33:26PM +0530, Atri Sharma wrote:
While your threads are executing, your query can't be cancelled --
only a hard kill will take the database down. If you're ok with that
risk, then go
On Mon, Feb 18, 2013 at 10:33:26PM +0530, Atri Sharma wrote:
> >> While your threads are executing, your query can't be cancelled --
> >> only a hard kill will take the database down. If you're ok with that
> >> risk, then go for it. If you're not, then I'd thinking about
> >> sendinging the byte
Sent from my iPad
On 18-Feb-2013, at 22:27, Bruce Momjian wrote:
> On Mon, Feb 18, 2013 at 09:56:22AM -0600, Merlin Moncure wrote:
>> On Mon, Feb 18, 2013 at 5:10 AM, Seref Arikan
>> wrote:
>>> Greetings,
>>> What would happen if I create multiple threads from within a postgresql
>>> function
On Mon, Feb 18, 2013 at 09:56:22AM -0600, Merlin Moncure wrote:
> On Mon, Feb 18, 2013 at 5:10 AM, Seref Arikan
> wrote:
> > Greetings,
> > What would happen if I create multiple threads from within a postgresql
> > function written in C?
> > I have the opportunity to do parallel processing on bin
Tim Uckun wrote:
> I guess I am not explaining it properly..
>
> Say I created new columns on both tables called "first_6" and
> populated them with the substrings. If I did a inner join or a
> left join on those fields would I still get a cross join?
>
> inner join model_configurations mc on mc
On Fri, Feb 15, 2013 at 6:25 PM, Claire McLister wrote:
> Hi there,
>
> We recently copied over our 8.3 database cluster files from a local disk to
> a network attached storage drive.
>
> Everything seemed to work okay for a while until we got this error:
>
> ERROR: could not link file "pg_xlo
On Mon, Feb 18, 2013 at 5:10 AM, Seref Arikan
wrote:
> Greetings,
> What would happen if I create multiple threads from within a postgresql
> function written in C?
> I have the opportunity to do parallel processing on binary data, and I need
> to create multiple threads to do that.
> If I can ens
Cochise Ruhulessin wrote:
> Regarding your question about what the CHECK constraint should achieve, I had
> abstracted by use case
> into Books/Book Types, which may have caused some vagueness. The actual use
> case are the following
> tables.
[...]
> CREATE TABLE persons(
> person_id int8
Thanks,
You are right, it is not what I'm doing, I'm simply calling code that works
on the binary blob using multiple threads.
On Mon, Feb 18, 2013 at 3:02 PM, Bruce Momjian wrote:
> On Mon, Feb 18, 2013 at 02:51:13PM +, Seref Arikan wrote:
> > Thanks Bruce,
> > I too think that it should b
On Mon, Feb 18, 2013 at 02:51:13PM +, Seref Arikan wrote:
> Thanks Bruce,
> I too think that it should be fine, as long as I make sure that the spawned
> threads do not call back to originating thread and they are properly
> terminated
> once they're finished etc.
> Various messages I've see
Thanks Bruce,
I too think that it should be fine, as long as I make sure that the spawned
threads do not call back to originating thread and they are properly
terminated once they're finished etc.
Various messages I've seen in the list archives seem to mention that
spawning threads is a bad idea, e
On Mon, Feb 18, 2013 at 11:10:51AM +, Seref Arikan wrote:
> Greetings,
> What would happen if I create multiple threads from within a postgresql
> function written in C?
> I have the opportunity to do parallel processing on binary data, and I need to
> create multiple threads to do that.
> I
Greetings,
What would happen if I create multiple threads from within a postgresql
function written in C?
I have the opportunity to do parallel processing on binary data, and I need
to create multiple threads to do that.
If I can ensure that all my threads complete their work before I exit my
funct
Satoshi Nagayasu, 17.02.2013 17:42:
I have never seen InstantSQL itself, but I had chances several times
to go the RDB technical seminars here in Japan, where I have found
that learning database technology is really exciting. :)
So, I wish I will be able to work with RDB (and VMS) someday. :)
Tiemo Kieft wrote:
> We are developing an application that uses various web analytics packages
> (like Google Analytics) to
> run analyses on. We are currently in closed beta stadium where we don't have
> a lot of data in the
> database, but at some point it will grow considerably.
>
> We basica
30 matches
Mail list logo