Max registers in postgresql 7.4

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ruby Deepdelver

    Max registers in postgresql 7.4

    Hello, I'm having trouble in find certain information, i've search over the
    web and through the documentation but i haven't had lucky.
    I need to know if there is some limit in the amount of registers that the
    database can manage, and if so, how much is that maximun.
    Thanks in advanced, Ruby.

    _______________ _______________ _______________ _______________ _____
    Add photos to your messages with MSN 8. Get 2 months FREE*.



    ---------------------------(end of broadcast)---------------------------
    TIP 6: Have you searched our list archives?



  • Doug McNaught

    #2
    Re: Max registers in postgresql 7.4

    "Ruby Deepdelver" <janettedoe@hot mail.com> writes:
    [color=blue]
    > Hello, I'm having trouble in find certain information, i've search
    > over the web and through the documentation but i haven't had lucky.
    > I need to know if there is some limit in the amount of registers that
    > the database can manage, and if so, how much is that maximun.[/color]

    Ummm... What is a 'register'? That's not a standard database term
    AFAIK and it does not have any meaning with respect to PostgreSQL.
    That's probably why you couldn't find anything. :)

    -Doug

    ---------------------------(end of broadcast)---------------------------
    TIP 4: Don't 'kill -9' the postmaster

    Comment

    • Martin Marques

      #3
      Re: Max registers in postgresql 7.4

      Mensaje citado por Doug McNaught <doug@mcnaught. org>:
      [color=blue]
      > "Ruby Deepdelver" <janettedoe@hot mail.com> writes:
      >[color=green]
      > > Hello, I'm having trouble in find certain information, i've search
      > > over the web and through the documentation but i haven't had lucky.
      > > I need to know if there is some limit in the amount of registers that
      > > the database can manage, and if so, how much is that maximun.[/color]
      >
      > Ummm... What is a 'register'? That's not a standard database term
      > AFAIK and it does not have any meaning with respect to PostgreSQL.
      > That's probably why you couldn't find anything. :)[/color]

      Doug, you forgot to say what the term really is: TUPLE

      --
      select 'mmarques' || '@' || 'unl.edu.ar' AS email;
      ---------------------------------------------------------
      Martín Marqués | Programador, DBA
      Centro de Telemática | Administrador
      Universidad Nacional
      del Litoral
      ---------------------------------------------------------

      ---------------------------(end of broadcast)---------------------------
      TIP 1: subscribe and unsubscribe commands go to majordomo@postg resql.org

      Comment

      • Christopher Browne

        #4
        Re: Max registers in postgresql 7.4

        janettedoe@hotm ail.com ("Ruby Deepdelver") writes:[color=blue]
        > Hello, I'm having trouble in find certain information, i've search
        > over the web and through the documentation but i haven't had lucky.
        > I need to know if there is some limit in the amount of registers that
        > the database can manage, and if so, how much is that maximun.
        > Thanks in advanced, Ruby.[/color]

        It is not evident what you mean by "registers. "

        The meaning I usually take is nicely documented in FOLDOC:
        <http://wombat.doc.ic.a c.uk/foldoc/foldoc.cgi?regi ster>

        "register

        1. One of a small number of high-speed memory locations in a
        computer's CPU. Registers differ from ordinary random access memory in
        several respects:

        There are only a small number of registers (the "register set"),
        typically 32 in a modern processor though some, e.g. SPARC, have as
        many as 144. A register may be directly addressed with a few bits. In
        contrast, there are usually millions of words of main memory (RAM),
        requiring at least twenty bits to specify a memory location. Main
        memory locations are often specified indirectly, using an indirect
        addressing mode where the actual memory address is held in a register.

        Registers are fast; typically, two registers can be read and a third
        written -- all in a single cycle. Memory is slower; a single access
        can require several cycles.

        The limited size and high speed of the register set makes it one of
        the critical resources in most computer architectures. Register
        allocation, typically one phase of the back-end, controls the use of
        registers by a compiled program."

        Databases don't usually manage registers; that normally involves some
        combination of the operating system (which may have some conventions
        as to what registers are used for what purposes) and the compilers
        used to compile code.

        The "maximum number of registers" is normally a function of what the
        manufacturer of your computer's CPU has designed; DBMS implementors
        cannot increase the number.
        --
        let name="cbbrowne" and tld="libertyrms .info" in String.concat "@" [name;tld];;
        <http://dev6.int.libert yrms.com/>
        Christopher Browne
        (416) 646 3304 x124 (land)

        Comment

        Working...