Re: Looking for table in PostregSQL that contains Operating System and Processor information

Поиск
Список
Период
Сортировка
От Grzegorz Szpetkowski
Тема Re: Looking for table in PostregSQL that contains Operating System and Processor information
Дата
Msg-id BANLkTi=7BRipOi0=1mou34-H72AMcyUdGw@mail.gmail.com
обсуждение исходный текст
Ответ на Looking for table in PostregSQL that contains Operating System and Processor information  ("Lieu, Peter" <Peter_Lieu@bmc.com>)
Ответы Re: Looking for table in PostregSQL that contains Operating System and Processor information  (Gregor Trefs <Gregor.Trefs@delphit.com>)
Список pgsql-novice
AFAIK PostgreSQL does not include such table, but with a little effort
you create it by yourself using server's system tools. For example in
Debian:

1. OS
lsb_release -ds
Debian GNU/Linux 5.0.8 (lenny)

2. Platform (i386/i486/i586/i686 means "32 bit" and x86_64 is "64 bit")
uname -m
i686

3. CPU
cat /proc/cpuinfo | grep "model name" | cut -d ':' -f 2 | tr -s ' '
 Intel(R) Core(TM) xx CPU M xxx @ x.xxGHz

Regards,
Grzegorz Szpetkowski

2011/5/5 Lieu, Peter <Peter_Lieu@bmc.com>:
> Hi,
>
>
>
> I am new to PostreqSQL and I would like to know if there is a table in
> PostregSQL database that contains the Operating System, Platform, and
> Processor information which the PostregSQL database server is running on.
>
>
>
> Thank you very much for taking my question.
>
>
>
> Regards,
>
> Peter Lieu

В списке pgsql-novice по дате отправления:

Предыдущее
От: Mauro Ziliani
Дата:
Сообщение: Re: How to obtain the max length of a varchar(50) field.
Следующее
От: Gregor Trefs
Дата:
Сообщение: Re: Looking for table in PostregSQL that contains Operating System and Processor information