欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > DB2

DB2如何查看当前用户模式及切换用户

发布时间:2014-08-10 作者:投稿whsnow 来源:转载
DB2如何查看当前用户模式及切换用户,给其他用户授权等等,下面统统为大家介绍下

1. 连接数据库:db2 connect to study

2. 查询当前用户模式:select current schema from sysibm.sysdummy1 或 select current schema from sysibm.dual

3. 切换用户模式:set current schema toms

4. 切换用户: db2 connect to cpsdb user Administrator using 111111

5. 给其他用户授权:db2 grant dbadm on database to user odsuser

6. 查看当前用户的权限: db2 get authorizations

相关推荐