Ⅰ 怎么用 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是架构名