Time of Update: 2015-06-21
標籤:第一步:安裝pg基本軟體 註:在安裝pg之前,建議先建立好postgres賬戶,然後用此賬戶安裝pg軟體 1: ./configure –prefix=…(指向你想安裝的目錄) 2:make & sudo make 3:建立pg資料存貯目錄 mkdir ~/data 4:初始化pg initdb ~/data 第二步:安裝pg串連池pgbouncer 安裝libevent&c-
Time of Update: 2015-06-20
標籤:scala postgresql sbt 預設已經安裝了scala和SBT,並且對sbt有基本瞭解,知道怎樣用sbt建立一個工程。添加依賴要在scala中使用postgresql資料庫,需要匯入postgresql驅動相關的庫檔案,postgresql的庫檔案,可以去其官網上下載,一定要下載和你的scala、Jdk對應的版本。現在有兩種途徑可以在scala工程編譯時間添加這個postgre
Time of Update: 2015-06-17
標籤:linode postgresql ubuntu 安裝環境: Ubuntu 64bit PostgreSQL 9.0 1. 安裝PostgreSQL 輸入如下命令 sudo apt-get install
Time of Update: 2015-06-16
標籤:stream linux postgres 複製 650) this.width=650;" alt="postgresql-9.2.1.tar.bz2" class="editor-attachment" src="/e/u261/themes/default/images/spacer.gif" style="background:url("
Time of Update: 2015-06-15
標籤:postgresql從庫故障準備新庫1,建立使用者[[email protected] home]# userdel postgres[[email protected] home]# groupdel postgresmkdir /home/mydbchown -R postgres:postgres /home/mydb2,解壓安裝包[[email protected] home]## tar -xvf postgres/postgresql-8.1.4.
Time of Update: 2015-06-13
標籤:在 mac 下,可以利用 homebrew 直接安裝 PostgreSQL:brew install postgresql -v稍等片刻,PostgreSQL 就安裝完成。接下來就是初始資料庫,在終端執行一下命令,初始配置 PostgreSQL:initdb /usr/local/var/postgres -E utf8上面指定 "/usr/local/var/postgres" 為
Time of Update: 2015-06-13
標籤:Mac下安裝 postgrep。使用brew包管理工具可以方便的安裝 brew 就是 Homebrew 安裝方法 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Mac OS X已經內建Ruby 安裝完 brew後。用brew安裝Postgresql brew install postgrepsql
Time of Update: 2015-06-12
標籤:一、環境 ubuntu14.04 postgresql-9.4.3二、安裝 1、依賴包安裝sudo apt-get install libperl-dev python-dev libreadline-gplv2-dev zlib1g-dev 2、下載postgreSQL,編譯安裝wger https://ftp.postgresql.org/pub/source/v9.4.3/postgresql-9.4.3.tar.bz2tar -jxvf postgresql-9.4.3
Time of Update: 2015-06-12
標籤:如果編譯資料庫時使用了gmake world和gmake install-world, 所有的外掛程式都會被安裝, 那麼就不需要再次安裝了.外掛程式目錄contrib進入要安裝的外掛程式目錄, 例如cd contrib/pg_freespacemap把pg_config命令加入到預設路徑中export PATH=/opt/pgsql/bin:$PATHgmake cleangmakegmake install -- 這一步會將產生的動態庫檔案拷貝到pgsql的lib目錄,
Time of Update: 2015-06-05
標籤:postgresql 三元運算式 create or replace function decode(p_condition boolean, p_fist_val text, P_last_val text)returns text as$$declare v_ret_val text;beg
Time of Update: 2015-05-31
標籤:java web 目前時間 timestamp postgresql 方式1 常用插入方式Timestamp currentTime= new Timestamp(System.currentTimeMillis()); String sql = "INSERT INTO message(date_create)
Time of Update: 2015-06-01
標籤:postgresql預設情況下,遠端存取不能成功,如果需要允許遠端存取,需要修改兩個設定檔,說明如下:1.postgresql.conf將該檔案中的listen_addresses項值設定為“*”,在9.0 Windows版中,該項配置已經是“*”,無需修改。2.pg_hba.conf在該設定檔的host all all 127.0.0.1/32
Time of Update: 2015-06-01
標籤:一個資料庫包含一個或多個模式,而模式又包含表、序列、函數等,不同的模式可以包含相同名稱的表、序列、函數等。模式本質上是命名空間,就像人的姓氏一樣。一個使用者只要有許可權,串連到資料庫後,可一次訪問該資料庫的任何模式下的對象。建立一個資料庫會預設建立一個public模式,後續操作資料庫對象如果沒指定模式,則預設為public。例如之前建立的school資料庫school=# \dn+ &
Time of Update: 2015-05-26
標籤:環境 ubuntu 14.04 案頭版 postgresql 源碼下載連結,本教程是使用postgresql 9.3.4 進行編譯的http://www.postgresql.org/ftp/source/ 首先我們需要給ubuntu 安裝幾個包,因為 postgresql 編譯時間依賴install libreadline> apt-get install libreadline6 libreadline6-devinstall zlib>
Time of Update: 2015-05-25
標籤:基本環境說明:os:FreeBSD 9.3postgresql version:9.3.6master:192.168.56.101standby:192.168.56.102安裝過程略,基於pkg包1.配置master端# psql -U pgsql -d postgres -c "CREATE USER rep REPLICATION LOGIN ENCRYPTED PASSWORD ‘password‘;"# cd /usr/local/pgsql# vim
Time of Update: 2015-05-20
標籤:進入Postgresql 1 進入資料庫 預設安裝會建立postgres 使用者,,使用postgres使用者,psql命令會直接進入資料庫:Bash代碼 $ su postgres //psql使用者 $
Time of Update: 2015-05-21
標籤:前言: postgresql的升級方式有兩種 一種是使用 pg_dumpall 備份後 匯入至新版本即可。另一種就是本文使用pg_upgrade方式升級 是從檔案層級將 老的資料庫檔案 複製至新的版本中 注意:升級前請備份重要資料 最好在測試環境測試後再升級 環境: 系統: centos6.x x86 已安裝 postgresql 9.3 升級步驟: 首先安裝postgresql 9.4一
Time of Update: 2015-05-19
標籤:postgresql主從postgresql+slony-i安裝配置主從slon軟體:slony1-1.2.6http://slony.info/downloads/1.2/source/postgresql:http://www.postgresql.org/download/http://www.postgresql.org/ftp/source/v8.1.23/ 一、postgresql安裝 方法1.rpm包安裝postfresql:所需軟體包:postgresq
Time of Update: 2015-05-18
標籤:一、前言 PostgreSQL通常也簡稱Postgres,是一個關係型資料庫管理系統,適用於各種Linux作業系統、Windows、Solaris、BSD和Mac OS X。PostgreSQL遵循PostgreSQL許可,是一個開源軟體。PostgreSQL由PostgreSQL全球開發組開發,由極少數的公司志願組成並進行監督管理,這些公司有紅帽、EnterpriseDB等。
Time of Update: 2015-05-17
標籤:-------------------------------------------------------------------------------------------------------目錄:--1. 資料庫----1.1 建立資料庫----1.2 刪除資料庫--2. 架構----2.1 建立架構----2.2 刪除架構--3. 表----3.1 建立表------3.1.1 多個欄位的聯合唯一性------3.1.2 主鍵和外鍵----3.2 刪除表----3.3