謹以此記錄使用greenplum過程中遇到的問題
2017-12-26
報錯資訊:
error: source database "template1" is being accessed by other users
detail: there are 1 other session(s) using the database.
解決辦法:
1.使用pg的另外乙個模板庫template0
create database 資料庫名
with owner = 使用者名稱
encoding = 'utf8'
tablespace = pg_default
connection limit = -1
template template0;
2.殺掉連線到template1的程序,再執行一次建庫語句
資料庫:select procpid from pg_stat_activity where datname = 'template1';
linux命令:kill -9 procpid
之後重新執行建庫指令碼
常見問題 朗動常見問題
常見問題一 方向盤變沉 檢查胎壓是否正常,輪胎是否過度磨損。助力幫浦不工作,前輪氣壓低。冬天的話,冷車在冬天助力油比較稠,方向會重一點。檢查轉向助力油。1 應該是是助力系統有問題或則助力潤滑油有問題。2 如果你在駕車時感覺方向盤變緊,汽車偏向一側,需要檢查輪胎,或進行車輪平衡 定位。在這些問題剛剛發...
面試常見問題 1 this的常見問題
this 的含義 this關鍵字是乙個非常重要的語法點。毫不誇張地說,不理解它的含義,大部分開發任務都無法完成。前一章已經提到,this可以用在建構函式之中,表示例項物件。除此之外,this還可以用在別的場合。但不管是什麼場合,this都有乙個共同點 它總是返回乙個物件。簡單說,this就是屬性或方...
Spring常見問題
1 利用spring框架程式設計,console列印出log4j warn please initialize the log4j system properly?lupa開源社群 u i w.d t 說 明你的log4j.properties沒有配置。請把log4j.properties放到工程的...