Uuid ossp postgresql install linux

Русские Блоги

Метод установки пакета uuid-ossp PG под Linux

  1. Во время установки pgsql было сообщено об ошибке, как показано на рисунке:

    Подробная информация:

2. Google самое простое решение — установить пакет contrib

Интеллектуальная рекомендация

Пошаговая загрузка файла Spring MVC-09 (на основе файла загрузки клиента Servlet3.0 + Html5)

пример тестовое задание Исходный код Несмотря на загрузку файлов в Servlet3.0 +, мы можем очень легко программировать на стороне сервера, но пользовательский интерфейс не очень дружелюбен. Одна HTML-ф.

Создайте многоканальное окно в приложениях Win32

Создайте многоканальное окно в приложениях Win32, создайте несколько оконных объектов одного и того же класса Windows, а окна объектов разных классов окон. .

Путь к рефакторингу IOS-APP (3) Введение в модульное тестирование

IOS-APP реконструкция дороги (1) структура сетевых запросов IOS-APP реконструкция дороги (два) Модельный дизайн При рефакторинге нам нужна форма, позволяющая вносить смелые изменения, обеспечивая при .

Tree——No.617 Merge Two Binary Trees

Problem: Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are not. You need to merge them into a new bin.

Источник

Генерация UUID в Postgres для оператора вставки?

Мой вопрос довольно прост. Мне известна концепция UUID, и я хочу сгенерировать ее для ссылки на каждый «элемент» из «хранилища» в моей БД. Кажется разумным, верно?

Проблема в следующей строке возвращает ошибку:

Я использую Postgres 8.4 на Ubuntu 10.04 x64.

uuid-ossp это модуль contrib, поэтому по умолчанию он не загружается на сервер. Вы должны загрузить его в свою базу данных, чтобы использовать его.

Для современных версий PostgreSQL (9.1 и новее) это просто:

но для 9.0 и ниже вы должны вместо этого запустить скрипт SQL для загрузки расширения. См. Документацию для модулей contrib в 8.4 .

Для Pg 9.1 и новее вместо этого прочтите текущие документы contrib и CREATE EXTENSION . Эти функции не существуют в 9.0 или более ранних версиях, таких как ваша 8.4.

Если вы используете упакованную версию PostgreSQL, вам может потребоваться установить отдельный пакет, содержащий модули contrib и расширения. Найдите в вашей базе данных менеджера пакетов «postgres» и «contrib».

Без расширений (чит)

(работает как минимум в 8.4)

  • Спасибо @Erwin Brandstetter за clock_timestamp() объяснение.

Если вам нужен действительный v4 UUID

* Спасибо @Denis Stafichuk @Karsten и @autronix

Также в современном Postgres вы можете просто разыграть:

SELECT md5(random()::text || clock_timestamp()::text)::uuid

Ответ на Крейга Рингера правильно. Вот немного больше информации для Postgres 9.1 и позже .

Доступно ли расширение?

Вы можете установить расширение только в том случае, если оно уже было создано для вашей установки Postgres (ваш кластер в Postgres lingo). Например, я обнаружил расширение uuid-ossp, включенное как часть установщика для Mac OS X, любезно предоставленное EnterpriseDB.com. Может быть доступно любое из нескольких десятков расширений .

Чтобы узнать, доступно ли расширение uuid-ossp в вашем кластере Postgres, запустите этот SQL, чтобы запросить pg_available_extensions системный каталог:

Установить расширение

Чтобы установить это расширение, связанное с UUID , используйте команду CREATE EXTENSION, как показано в этом SQL:

Читайте также:  Драйвера apple air для windows

Осторожно: я обнаружил, что символы QUOTATION MARK вокруг имени расширения требуются, несмотря на обратное в документации.

Комитет по стандартам SQL или команда Postgres выбрали для этой команды нечетное имя. На мой взгляд, они должны были выбрать что-то вроде «INSTALL EXTENSION» или «USE EXTENSION».

Проверить установку

Вы можете убедиться, что расширение было успешно установлено в нужной базе данных, запустив этот SQL для запроса pg_extension системного каталога:

UUID в качестве значения по умолчанию

Для получения дополнительной информации см. Вопрос: Значение по умолчанию для столбца UUID в Postgres.

По старому

Приведенная выше информация использует новую функцию расширений, добавленную в Postgres 9.1. В предыдущих версиях мы должны были найти и запустить скрипт в файле .sql . Функция «Расширения» была добавлена, чтобы упростить установку, торгуя немного больше работы для создателя расширения за меньшую работу со стороны пользователя / потребителя расширения. Смотрите мой блог для дальнейшего обсуждения.

Типы UUID

Кстати, код в вопросе вызывает функцию uuid_generate_v4() . Это генерирует тип, известный как Версия 4, где почти все из 128 битов генерируются случайным образом. Хотя это подходит для ограниченного использования на меньшем наборе строк, если вы хотите практически исключить любую возможность столкновения, используйте другую «версию» UUID.

Например, оригинальная версия 1 сочетает в себе MAC-адрес хост-компьютера с текущей датой-временем и произвольным числом, вероятность коллизий практически равна нулю.

Для получения дополнительной информации см. Мой ответ на соответствующий вопрос.

Источник

F.43. uuid-ossp

The uuid-ossp module provides functions to generate universally unique identifiers (UUIDs) using one of several standard algorithms. There are also functions to produce certain special UUID constants.

F.43.1. uuid-ossp Functions

Table F-33 shows the functions available to generate UUIDs. The relevant standards ITU-T Rec. X.667, ISO/IEC 9834-8:2005, and RFC 4122 specify four algorithms for generating UUIDs, identified by the version numbers 1, 3, 4, and 5. (There is no version 2 algorithm.) Each of these algorithms could be suitable for a different set of applications.

Table F-33. Functions for UUID Generation

This function generates a version 1 UUID. This involves the MAC address of the computer and a time stamp. Note that UUIDs of this kind reveal the identity of the computer that created the identifier and the time at which it did so, which might make it unsuitable for certain security-sensitive applications.

This function generates a version 1 UUID but uses a random multicast MAC address instead of the real MAC address of the computer.

This function generates a version 3 UUID in the given namespace using the specified input name. The namespace should be one of the special constants produced by the uuid_ns_*() functions shown in Table F-34. (It could be any UUID in theory.) The name is an identifier in the selected namespace.

The name parameter will be MD5-hashed, so the cleartext cannot be derived from the generated UUID. The generation of UUIDs by this method has no random or environment-dependent element and is therefore reproducible.

This function generates a version 4 UUID, which is derived entirely from random numbers.

This function generates a version 5 UUID, which works like a version 3 UUID except that SHA-1 is used as a hashing method. Version 5 should be preferred over version 3 because SHA-1 is thought to be more secure than MD5.

Table F-34. Functions Returning UUID Constants

Function Description
uuid_generate_v1()
uuid_generate_v3(namespace uuid, name text)
uuid_generate_v5(namespace uuid, name text)

A «nil» UUID constant, which does not occur as a real UUID.

Constant designating the DNS namespace for UUIDs.

Constant designating the URL namespace for UUIDs.

Constant designating the ISO object identifier (OID) namespace for UUIDs. (This pertains to ASN.1 OIDs, which are unrelated to the OIDs used in PostgreSQL .)

Constant designating the X.500 distinguished name (DN) namespace for UUIDs.

F.43.2. Building uuid-ossp

Historically this module depended on the OSSP UUID library, which accounts for the module’s name. While the OSSP UUID library can still be found at http://www.ossp.org/pkg/lib/uuid/, it is not well maintained, and is becoming increasingly difficult to port to newer platforms. uuid-ossp can now be built without the OSSP library on some platforms. On FreeBSD, NetBSD, and some other BSD-derived platforms, suitable UUID creation functions are included in the core libc library. On Linux, OS X, and some other platforms, suitable functions are provided in the libuuid library, which originally came from the e2fsprogs project (though on modern Linux it is considered part of util-linux-ng). When invoking configure, specify —with-uuid=bsd to use the BSD functions, or —with-uuid=e2fs to use e2fsprogs‘ libuuid, or —with-uuid=ossp to use the OSSP UUID library. More than one of these libraries might be available on a particular machine, so configure does not automatically choose one.

Note: If you only need randomly-generated (version 4) UUIDs, consider using the gen_random_uuid() function from the pgcrypto module instead.

Источник

Uuid ossp postgresql install linux

The uuid-ossp module provides functions to generate universally unique identifiers (UUIDs) using one of several standard algorithms. There are also functions to produce certain special UUID constants. This module is only necessary for special requirements beyond what is available in core PostgreSQL . See Section 9.14 for built-in ways to generate UUIDs.

This module is considered “ trusted ” , that is, it can be installed by non-superusers who have CREATE privilege on the current database.

F.44.1. uuid-ossp Functions

Table F.32 shows the functions available to generate UUIDs. The relevant standards ITU-T Rec. X.667, ISO/IEC 9834-8:2005, and RFC 4122 specify four algorithms for generating UUIDs, identified by the version numbers 1, 3, 4, and 5. (There is no version 2 algorithm.) Each of these algorithms could be suitable for a different set of applications.

Table F.32. Functions for UUID Generation

Generates a version 1 UUID. This involves the MAC address of the computer and a time stamp. Note that UUIDs of this kind reveal the identity of the computer that created the identifier and the time at which it did so, which might make it unsuitable for certain security-sensitive applications.

Generates a version 1 UUID, but uses a random multicast MAC address instead of the real MAC address of the computer.

uuid_generate_v3 ( namespace uuid , name text ) → uuid

Generates a version 3 UUID in the given namespace using the specified input name. The namespace should be one of the special constants produced by the uuid_ns_*() functions shown in Table F.33. (It could be any UUID in theory.) The name is an identifier in the selected namespace.

The name parameter will be MD5-hashed, so the cleartext cannot be derived from the generated UUID. The generation of UUIDs by this method has no random or environment-dependent element and is therefore reproducible.

Generates a version 4 UUID, which is derived entirely from random numbers.

uuid_generate_v5 ( namespace uuid , name text ) → uuid

Generates a version 5 UUID, which works like a version 3 UUID except that SHA-1 is used as a hashing method. Version 5 should be preferred over version 3 because SHA-1 is thought to be more secure than MD5.

Table F.33. Functions Returning UUID Constants

Returns a “ nil ” UUID constant, which does not occur as a real UUID.

Returns a constant designating the DNS namespace for UUIDs.

Returns a constant designating the URL namespace for UUIDs.

Returns a constant designating the ISO object identifier (OID) namespace for UUIDs. (This pertains to ASN.1 OIDs, which are unrelated to the OIDs used in PostgreSQL .)

Returns a constant designating the X.500 distinguished name (DN) namespace for UUIDs.

Источник

F.44. uuid-ossp

The uuid-ossp module provides functions to generate universally unique identifiers (UUIDs) using one of several standard algorithms. There are also functions to produce certain special UUID constants.

F.44.1. uuid-ossp Functions

Table F-32 shows the functions available to generate UUIDs. The relevant standards ITU-T Rec. X.667, ISO/IEC 9834-8:2005, and RFC 4122 specify four algorithms for generating UUIDs, identified by the version numbers 1, 3, 4, and 5. (There is no version 2 algorithm.) Each of these algorithms could be suitable for a different set of applications.

Table F-32. Functions for UUID Generation

uuid_nil()

This function generates a version 1 UUID. This involves the MAC address of the computer and a time stamp. Note that UUIDs of this kind reveal the identity of the computer that created the identifier and the time at which it did so, which might make it unsuitable for certain security-sensitive applications.

This function generates a version 1 UUID but uses a random multicast MAC address instead of the real MAC address of the computer.

This function generates a version 3 UUID in the given namespace using the specified input name. The namespace should be one of the special constants produced by the uuid_ns_*() functions shown in Table F-33. (It could be any UUID in theory.) The name is an identifier in the selected namespace.

The name parameter will be MD5-hashed, so the cleartext cannot be derived from the generated UUID. The generation of UUIDs by this method has no random or environment-dependent element and is therefore reproducible.

This function generates a version 4 UUID, which is derived entirely from random numbers.

This function generates a version 5 UUID, which works like a version 3 UUID except that SHA-1 is used as a hashing method. Version 5 should be preferred over version 3 because SHA-1 is thought to be more secure than MD5.

Table F-33. Functions Returning UUID Constants

Function Description
uuid_generate_v1()
uuid_generate_v3(namespace uuid, name text)
uuid_generate_v5(namespace uuid, name text)

A «nil» UUID constant, which does not occur as a real UUID.

Constant designating the DNS namespace for UUIDs.

Constant designating the URL namespace for UUIDs.

Constant designating the ISO object identifier (OID) namespace for UUIDs. (This pertains to ASN.1 OIDs, which are unrelated to the OIDs used in PostgreSQL .)

Constant designating the X.500 distinguished name (DN) namespace for UUIDs.

F.44.2. Building uuid-ossp

Historically this module depended on the OSSP UUID library, which accounts for the module’s name. While the OSSP UUID library can still be found at http://www.ossp.org/pkg/lib/uuid/, it is not well maintained, and is becoming increasingly difficult to port to newer platforms. uuid-ossp can now be built without the OSSP library on some platforms. On FreeBSD, NetBSD, and some other BSD-derived platforms, suitable UUID creation functions are included in the core libc library. On Linux, OS X, and some other platforms, suitable functions are provided in the libuuid library, which originally came from the e2fsprogs project (though on modern Linux it is considered part of util-linux-ng). When invoking configure, specify —with-uuid=bsd to use the BSD functions, or —with-uuid=e2fs to use e2fsprogs‘ libuuid, or —with-uuid=ossp to use the OSSP UUID library. More than one of these libraries might be available on a particular machine, so configure does not automatically choose one.

Note: If you only need randomly-generated (version 4) UUIDs, consider using the gen_random_uuid() function from the pgcrypto module instead.

Источник

Читайте также:  Ошибка windows не удалось завершить форматирование
Оцените статью
uuid_nil()