Time of Update: 2016-01-11
標籤:在 Shell 命令列中,使用 postgresql-client 串連 PostgreSQL 資料庫時,每次都要輸入密碼。如果要寫 Shell Script,做一些類似於備份的自動化管理工作,每次都還要手動輸入密碼是一件讓人很不爽的事情,也沒有實現真正意義上的自動化。 何如在串連 PostgreSQL 資料庫時,不用手動輸入密碼,官方利用密碼檔案(Password File)提供了一種解決方案:Unix/Linux 在使用者家目錄建立一個 .pgpass
Time of Update: 2015-07-25
標籤:postgresql plpython安裝 plpython PL/Python - Python Procedural Language 安裝查看系統提供plpython包(已經編譯好的)。[[email protected] ~]# dnf search python |grep postgresqlpython3-postgresql.x86_64 : Connect
Time of Update: 2015-06-11
標籤:自己的最短路徑實現基本上是按照參考博文的1、2和3進行的,實現的時候也是問題不斷,只能是一個一個解決。問題1:自己發布的geoserver服務無法和OSM底圖疊加到一起。解決:參考博文2提到發布服務時需將投影設為900913,我認為大可不必,仍然用4326即可,只是openlayers載入時配置好相關的參數即可,如下: //定義地圖邊界 //var bounds= new OpenLayers.Bounds(12960129.562300, 4788641.902700, 12
Time of Update: 2015-03-17
標籤:postgresq特性MySQLPostgreSQL執行個體通過執行 MySQL 命令(mysqld)啟動執行個體。一個執行個體可以管理一個或多個資料庫。一台伺服器可以運行多個 mysqld 執行個體。一個執行個體管理器可以監視 mysqld 的各個執行個體。通過執行 Postmaster 進程(pg_ctl)啟動執行個體。一個執行個體可以管理一個或多個資料庫,這些資料庫組成一個叢集。叢集是磁碟上的一個地區,這個地區在安裝時初始化並由一個目錄組成,所有資料都儲存在這個目錄中。使用
Time of Update: 2015-01-28
標籤:PostgreSql查看當前表被哪些引用作參考表-- pg_CONSTRAINT.contype : p(主鍵), f(外鍵), u(唯一), c(檢查)-- 查看當前表IDSELECT oid, relname FROM pg_class WHERE relname = ‘syslogfilter‘;-- 查看引用當前表ID作參考表的主外鍵約束資訊SELECT * FROM pg_CONSTRAINT WHERE confrelid = ‘24935‘;--
Time of Update: 2015-01-10
標籤:資料庫 windows server 2008 postgresql Windows Server 2008 與普通 windows 版本最大的不同,在於其檔案/目錄控制許可權更嚴。而 PostgreSQL 資料庫也是一個按 “Unix/Linux 服務”程式設計的,也有自己的許可權規則,因此,PostgreSQL 在 Windows Server 2008
Time of Update: 2014-12-20
標籤:http://www.postgresql.org/about/news/1557/ 2014年12月18日,PostgreSQL全球開發小組發布PostgreSQL9.4,PostgresQL是世界領先的開來源資料庫。針對不同類型的資料庫使用者,此版本增加了許多新的特性,包括提升PostgreSQL的靈活性,可擴充性和效能,改進對JSON支援,資料複製和索引。靈活性通過使用PostgreSQL的新JSONB資料類型,使用者不再需要在關係和非關係型資料存放區之間做出選擇,而是二者
Time of Update: 2014-12-12
標籤:postgresql ssh django 添加除了postgres超級使用者以外的使用者。createuser -drSP testuser為使用者建立專屬資料庫createdb -O testuser testdb備份恢複資料時,應當以postgres超級使用者進行,避免發生一些權限類別的報錯。ssh免密碼登陸:如想在A機器上登入到B:在A機器上產生公開金鑰和私密金鑰 #
Time of Update: 2014-12-08
標籤:postgresql sql mysql MySQL 有一個和優秀的文法 create table ... like , 可以快速複製一張表,建立其副本。 PostgreSQL 也有類似的文法,而且更加靈活,不過要注意些細節。先來看看MySQL 文法: create table ... like 原始表T1,結構如下:+----------+------------------+
Time of Update: 2014-11-25
標籤:postgresql 交叉表 這裡我來示範下在POSTGRESQL裡面如何?交叉表的展示,至於什麼是交叉表,我就不多說了,度娘去哦。原始表資料如下:t_girl=# select * from score; name | subject | score -------+---------+------- 
Time of Update: 2014-11-25
標籤:postgresql cursor python sql 交叉表 這裡我來示範下在POSTGRESQL裡面如何?交叉表的展示,至於什麼是交叉表,我就不多說了,度娘去哦。原始表資料如下:t_girl=# select * from score; name | subject | score -------+--------
Time of Update: 2014-11-14
標籤:style blog color os 使用 sp 資料 div log 一、查看哪些使用者在連結資料庫select * from pg_stat_activity ;
Time of Update: 2014-11-12
標籤:postgresqlPostgreSQL 功能龐大,對實現乘法這類運算有諸多的方法,今天我來簡單列舉下以下幾種便捷的途徑。比如我們要計算10!1、 可以用SQL給它展開:t_girl=# select 1*2*3*4*5*6*7*8*9*10 as multiply_10; multiply_10 ------------ 3628800
Time of Update: 2014-11-04
標籤:style io ar os sp strong 資料 on bs 1. 測試資料 表結構 一:CREATE TABLE fact_data( day_id
Time of Update: 2014-11-04
標籤:postgresql 行轉列 表結構及資料select logdatetime,sum(login) as login,sum(logo) as logofrom(SELECT date(logdatetime) AS "logdatetime", case logfrom when ‘login‘ then COUNT(id) else 0 end AS "login",case
Time of Update: 2014-11-02
標籤:style blog http io color os ar 使用 for 1、use
Time of Update: 2014-10-31
標籤:python 資料庫 postgresql mysql crontab 刪除psql資料庫:(以資料庫Django名為例:)dropdb Django;建立資料庫並屬於django:createdb Django -O django當我們在Django中用了python manage.py
Time of Update: 2014-10-16
標籤:postgresql metasploit KaLi 串連 postgresql 資料庫 查看 postgresql 是否啟動,沒有啟動的話,使用 service postgresql start 命令啟動。啟動後查看是否啟動成功,連接埠是 5432,:650) this.width=650;"
Time of Update: 2014-09-25
標籤:blog http os ar 檔案 資料 2014 問題 on 最近裝了linux系統CentOs6.5,由於項目中要用到PostgreSQL,所以裝了9.2的版本。由於接觸linu
Time of Update: 2014-09-06
標籤:style blog http os io 使用 2014 sp log 1,postgresql學習uri推薦