码迷,mamicode.com
首页 >  
搜索关键字:identified    ( 1345个结果
oracle dblink 用户名/密码 口令无效
因为需要连接的数据库版本是 Oracle11g 区分大小写 所以dblink 创建的时候如下:CREATE PUBLIC DATABASE LINK LINKNAME CONNECT TO "name" IDENTIFIED BY "password" USING '(DESCRIPTION= .....
分类:数据库   时间:2014-08-12 16:42:04    阅读次数:443
ORACLE基本SQL语句-用户及建表篇
一、用户相关SQL语句/*新建用户*/create user SA identified by 2013;说明:SA用户名,2013密码/*授权connect,resource给用户sa*/grant connect,resource to sa;说明:CONNECT角色: --是授予最终用户的典型...
分类:数据库   时间:2014-08-11 17:07:12    阅读次数:235
创建数据库连接
创建database link基本语法CREATE [ SHARED ][ PUBLIC ] database link link_name [ CONNECT TO user IDENTIFIED BY password ] [ AUTHENTICATED BY user ID...
分类:数据库   时间:2014-08-11 14:47:02    阅读次数:236
oracle11g创建新的用户和修改最大连接数
create user test identified by root; grant create session,resource to root; alter user test account unlock; grant create view to test; grant any sequece to test; grant create synonym to ich;--创建别...
分类:数据库   时间:2014-08-10 13:00:50    阅读次数:357
Oracle用户的创建和删除
1. 创建用户: SQL> create user user01 identified by user01; User created. 但登录提示01045的错误,缺少CREATE SESSION权限。 ERROR: ORA-01045: user USER01 lacks CREATE SESSION privilege; logon denied Enter user...
分类:数据库   时间:2014-08-08 16:10:56    阅读次数:262
POJ 3221 Diamond Puzzle
Description A diamond puzzle is played on a tessellated hexagon like the one shown in Figure 1 below. And in this problem the faces produced by the tessellation are identified as they are numbered ...
分类:其他好文   时间:2014-08-07 23:03:25    阅读次数:348
@ResponseBody返回不能正确接收
Spring-MVC中@ResponseBody返回Bean到前台接收这么一串代码,还套着HTML标签:The resource identified by this request is only capable of generating responses with characteristi...
分类:其他好文   时间:2014-08-07 12:03:19    阅读次数:191
oracle学习笔记之用户管理-2
案例:创建一个用户software,然后给分配权限,可以让software登录数据库、创建表、操作自己创建的表,回收角色,最后删除用户。1、创建software用户,密码system create user software identified by system;2、让software连接数据....
分类:数据库   时间:2014-08-06 22:32:22    阅读次数:281
oracle学习笔记之用户管理-1
sys system(管理员) scott(普通用户)sqlserver sa前提:oracle上,假如自己是管理员,当需要建立用户的时候,由自己操作;1、创建用户(sys system用户) create user username identified by password; 注意:密...
分类:数据库   时间:2014-08-06 22:22:42    阅读次数:397
Oracle建立表空间和用户
Oracle建立表空间和用户 建立表空间和用户的步骤:用户建立:create user username identified by "password";授权:grant create session to username; grant create tabl...
分类:数据库   时间:2014-08-03 17:51:45    阅读次数:286
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!