On Sun, 7 Sep 2008, M2Y wrote:
Why does a replication solution need log shipping and why cant we just
ship the transaction statements to a standby node?
Here's one of the classic examples of why that doesn't work:
create table x (d decimal);
insert into x values (random());
If you execute th
M2Y escribió:
> On Sep 7, 11:52 pm, [EMAIL PROTECTED] (Shane Ambler) wrote:
> > > What is a good way to start understanding backend(postgres) code? Is
> > > there any documentation available especially for developers?
> > > What is commit log and why it is needed?
> >
> > To achieve ACID (Atomic,
M2Y <[EMAIL PROTECTED]> writes:
> On Sep 7, 11:52 pm, [EMAIL PROTECTED] (Shane Ambler) wrote:
>> Most of the developer info is within comments in the code itself.
>> Another place to start ishttp://www.postgresql.org/developer/coding
>>
> I have seen this link. But, I am looking(or hoping) for any
Thanks Shane for your response...
On Sep 7, 11:52 pm, [EMAIL PROTECTED] (Shane Ambler) wrote:
> > What is a good way to start understanding backend(postgres) code? Is
> > there any documentation available especially for developers?
>
> Most of the developer info is within comments in the code itse
M2Y wrote:
Hello,
Could you plz answer the following questions of a newbie:
What is a good way to start understanding backend(postgres) code? Is
there any documentation available especially for developers?
Most of the developer info is within comments in the code itself.
Another place to sta
Hello,
Could you plz answer the following questions of a newbie:
What is a good way to start understanding backend(postgres) code? Is
there any documentation available especially for developers?
What is commit log and why it is needed?
Why does a replication solution need log shipping and why c