Ⅰ 怎麼用 sqlplus 切換oracle資料庫實例(11g的沒有sqlplsusw)。
打開cmd命令,輸入set ORACLE_ID="實例名" 回車,再輸入 sqlplus 根據提示輸入用戶名和密碼就可以登錄到你要登陸的資料庫了。
Ⅱ postgresql從一個資料庫轉到另一個資料庫有沒有方便的方法
Postgresql不支持跨資料庫操辯信游作。
可攜銷以通過pg_mp加上pg_restore或psql來完成坦中遷移,或者直接使用sql語句中的語句來完成數據的遷移。
Ⅲ 如何在postgreSQL中選擇資料庫
安裝PostgreSQL資料庫之後,默認是只接受本地訪問連接。如果想在其他主機上訪問PostgreSQL資料庫伺服器,就需要進行相 應的配置。配置遠程連接PostgreSQL資料庫的步驟很簡單,只需要修改data目錄下的pg_hba.conf和postgresql.conf, 其中pg_hba.conf是用來配置對資料庫的訪問許可權,postgresql.conf文件用來配置PostgreSQL資料庫畝碰伺服器的相應的參數。 下面介紹配置的步驟:
1.修改pg_hba.conf文件,配置用戶的訪問許可權:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
host all all 192.168.1.0/24 md5
# IPv6 local connections:
host all all ::1/128 trust
其中紅色標識的內容為新添加的內容,表示允許網段192.168.1.0上的所有主機使用所有合法的資料庫用戶名訪問資料庫,並提供加密的密碼驗 證。在我們的環境中,我們需要在主機192.168.1.5上使用postgres用戶訪問192.168.1.9上的PostgreSQL資料庫。
2.修改postgresql.conf文件,將資料庫伺服器的監聽模式修改為監聽所有主機發出的連接請求。
定位到#listen_addresses='localhost'。PostgreSQL安裝完成後,默認是只接受來在本機localhost的連接請 求,通過將改行內容修改為listen_addresses='*'來允許數據和耐拍庫伺服器監聽來自任何主機的連接請求:
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost', '*' = all
# (change requires restart)
修改之後,保存並退出,然後重喚羨起資料庫,就可以在在遠程機器上訪問PostgreSQL資料庫了。
另外,資料庫管理小貼士:
matrix資料庫使用的是PostgreSQL資料庫。你可以安裝一個類似phpmyadmin的管理
Ⅳ 如何退出postgresq資料庫
啟動資料庫伺服器(posgres用戶)
[postgres@localhost bin]$ postgres D /opt/postgresql/data/ > /opt/postgresql/log/pg_serverlog >& &
[]
當然如果設置了環境變數
PGDATA=/opt/postgresql/data
export PGDATA
後可使用pg_ctl工具進行啟動:
[postgres@localhost log]$ pg_ctl start l /opt/postgresql/log/pg_serverlog
pg_ctl: another server might be running; trying to start server anyway
pg_ctl: could not start server
Examine the log output
[postgres@localhost log]$
因為之前已經啟動所以列印another server might be running此時查看日誌有如下信息:
[postgres@localhost log]$ cat pg_serverlog
FATAL: lock file postmasterpid already exists
HINT: Is another postmaster (PID ) running in data directory /opt/postgresql/data?
[postgres@localhost log]$
當然最簡的啟動方式是
[postgres@localhost ~]$ pg_ctl start
server starting
[postgres@localhost ~]$ LOG: database system was shut down at :: CST
LOG: autovacuum launcher started
LOG: database system is ready to accept connections
如果要在操作系統啟動時就啟動PG可以在/etc/信掘rcd/rclocal 文件中加以下語句
/opt/postgresql/bin/pg_ctl start l /opt/postgresql/log/pg_serverlog D /opt/postgresql/data
關閉伺服器
最簡單方法
[postgres@localhost ~]$ pg_ctl stop
waiting for server to shut down done
server stopped
與Oracle相同在關閉時也可採用不同的模式簡介如下
SIGTERM
不再允許新的連接但是允許所有活躍的會話正常完成他們的工作只有在所有會話都結束任務後才關閉這是智能關閉
SIGINT
不再允許新的連接向所有活躍伺服器發送 SIGTERM(讓它們立刻退出)然後等待所有子進程退出並關閉資料庫這是快速關閉
SIGQUIT
令 postgres 向所有子進程發送 SIGQUIT 並且立即退出(所有子進程也會立即退出)而不會妥善地關閉資料庫系統這是立即關閉這樣做會導致下次啟動時的恢復(通過重放 WAL 日誌)我們推薦只在緊急的時候使用這個方法
SIGKILL
此選項盡量不要使用這樣會阻橋差止伺服器清理共享內存和信號燈資源那樣的話你只能在啟動伺服器之前自己手工做這件事另外SIGKILL 直接把 postgres 殺掉而不會等它把信號中繼給它的敏坦皮子進程因此我們還需要手工殺掉每個獨立子進程
使用方法舉例
[postgres@localhost ~]$ pg_ctl stop o SIGTERM
LOG: received smart shutdown request
LOG: autovacuum launcher shutting down
waiting for server to shut downLOG: shutting down
LOG: database system is shut down
done
server stopped
[postgres@localhost ~]$
最快速關閉方法kill postgres 進程
[postgres@localhost ~]$ kill INT `head /opt/postgresql/data/postmasterpid`
[postgres@localhost ~]$ LOG: received fast shutdown request
LOG: aborting any active transactions
LOG: autovacuum launcher shutting down
LOG: shutting down
LOG: database system is shut down
附postgre啟動後的進程如下:
[postgres@localhost ~]$ ps ef|grep post
root : pts/ :: su postgres
postgres : pts/ :: bash
postgres : pts/ :: /opt/postgresql/bin/postgres
postgres : ? :: postgres: writer process
postgres : ? :: postgres: wal writer process
postgres : ? :: postgres: autovacuum launcher process
postgres : ? :: postgres: stats collector process
postgres : pts/ :: ps ef
postgres : pts/ :: grep post
[postgres@localhost ~]$
Ⅳ pg資料庫只讀怎麼關掉
硬鎖定,直接將資料庫切換到恢復模式,絕對不會有寫操作出現、軟鎖定,設置default_transaction_read_only為on,默認開啟的事務為只讀事務。用戶如果使用begiontransactionreadwrite可破解。
Ⅵ 在sqlserver存儲過程中如何切換資料庫
不一定非要在存儲過程中轉換,用清卜普通的sql語句就可以,一餘宴般用答毀穗cast函數。
測試方法:
創建表及插入數據:
create table test
(id int,
starttime varchar(20));
insert into test values (1,'2015-07-11');
將starttime欄位轉化為datetime類型:
select cast(starttime as datetime) from test;
結果如圖,這時,starttime就轉成了datetime類型:
Ⅶ 如何在mongoengine切換資料庫名稱
參考官方文檔:http://docs.mongoengine.org/guide/connecting.html#multiple-databases
frommongoengineimportconnect,Document,StringField
connect(db='project1',alias='user-db')
connect(db='project2',alias='book-db')
classUser(Document):
name=StringField()
meta={'db_alias':'user-db'}
classBook(Document):
name=StringField()
meta={'db_alias':'book-db'}
上例中,User和Book分別用的是project1和project2兩個不瞎穗同的資料庫,如果想臨時手動更改資料庫:
frommongoengine.context_managersimportswitch_db
withswitch_db(User,'book-db')as磨襪卜User:
User(name='Ross'好臘).save()#Savesinthe'book-db'
或
user=User.objects.get(id=user_id)
user.switch_db('book-db')
user.save()
Ⅷ ORACLE如何切換到用戶需要的資料庫
1、使用組合鍵「Win + R」打開運行對話框,在輸入框中輸入regedit 並回車打開「注冊表編輯團搏器」。
Ⅸ oracle sqlplus 登陸時怎麼切換資料庫
可以在不同用戶名下建立不同資料庫,這正稿中樣
conn 用戶名/密碼
不同敬李的用戶名密碼就能切換到不同的舉山資料庫
Ⅹ sql用什麼語句切換當前資料庫呢
--1、切換資料庫語句:
useAAADB;
go;
一般在程序中不使用以上語句
在虧畝程序內瞎帶一般都是直接跨庫訪問,但首先當前資料庫用戶具備對別的數據有相應許可權,磨空蘆例如:
select*fromAAADB.dbo.AAA
以上語句是不管在當前在哪個資料庫下,都可以直接查詢AAADB資料庫下的AAA表,其中dbo是架構名