zoukankan      html  css  js  c++  java
  • How to load Additional Supplied Modules for Postgres on Windows

    I try to enable "fuzzystrmatch" function in Postgresql 8.3.9, following is my solution:

    1. DO NOT install Postgresql under the default "Progrem File" directory, because the it can't not recognize the white space inside the path! I switch to some directory not containing while space, like "C:/PostgreSQL/8.3/". I will use this as my Postgres home directory. I install and reinstall several times and figure out this isssue. Actually. it is a very common problem using software ported form Linux world.
    2. You will find lots of DLL files under "lib". But we should go to "share/contrib" directory. Run:
      • C:/PostgreSQL/8.3/bin>psql -d postgres -U postgres -f C:/PostgreSQL/8.3/share/contrib/fuzzystrmatch.sql
        SET
        CREATE FUNCTION
        CREATE FUNCTION
        CREATE FUNCTION
        CREATE FUNCTION
        CREATE FUNCTION
        CREATE FUNCTION
        CREATE FUNCTION
    3. You should note that this funtion must be specified to any database you want. It is not a global setting! Then try SELECT levenshtein('GUMBO', 'GAMBOL'); or SELECT name FROM element  WHERE difference(name, 'item') > 2;
    4. If you want to check out more fuzzy search, go to reference [1]. There will be another solution, please refer to [2].
    5. Next, I will try xml and full-text search functions.

    Reference:

    [1]http://www.postgresql.org/docs/8.3/static/fuzzystrmatch.html

    [2]http://stackoverflow.com/questions/430123/how-do-i-enable-the-postgresql-function-profiler

    [3] FAQ on installation for Windows: http://wiki.postgresql.org/wiki/Running_&_Installing_PostgreSQL_On_Native_Windows

    [4] Thanks this page poniting out the right location for the sql file: http://dcmms.sourceforge.net/doc/administration/index.html#fuzzystrmatch_manual_install

  • 相关阅读:
    nginx搭建文件服务器配置文件
    VS code
    UNIX 网络编程学习
    局域网内的一些计算机可以ping通 有些ping不同
    Cfree clion windows c语言 socket 网络编程
    查找文件
    select * from 后有多个表的使用方法
    linux安装git方法
    Xshell中文乱码怎么处理?
    linux 逻辑卷管理 /dev/mapper/VolGroup-lv_root 100%调整分区大小
  • 原文地址:https://www.cnblogs.com/ainima/p/6331348.html
Copyright © 2011-2022 走看看