随笔分类 - 数据的库
Oracle 、SQLServer、MySQL
摘要:Redis is not officially supported on Windows. However, you can install Redis on Windows for development by following the instructions below. To instal
阅读全文
摘要:1.DDL(Data Definition Language)数据库定义语言statements are used to define the database structure or schema. DDL是SQL语言的四大功能之一。用于定义数据库的三级结构,包括外模式、概念模式、内模式及其相互
阅读全文
摘要:OracleParameter endGeometry = cmd.CreateParameter(); endGeometry.OracleDbType = OracleDbType.Object; endGeometry.UdtTypeName = "MDSYS.SDO_GEOMETRY"; e
阅读全文
摘要:链接MySQL数据库报错: 数据库连接url中添加对应属性的支持。allowPublicKeyRetrieval=true&useSSL=false url: jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf
阅读全文
摘要:在对应的 Entity 中添加注解 @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})同时必须添加引用:import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
阅读全文
摘要:1. 首先删除 @EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) 2. 在配置文件里添加完整的datasource属性 spring.datasource.url=jdbc:mysql://localhos
阅读全文
摘要:Unable to create initial connections of pool. 在链接url里添加 将useSSL=true改为useSSL=false 只能说明服务器没有打开SSL功能
阅读全文
摘要:建议在链接url处添加对应的属性 jdbc:mysql://localhost:3306/book?allowPublicKeyRetrieval=true&useSSL=false
阅读全文
摘要:SpringBoot 连接 MySQL 数据库,但是却获得以下错误信息提示:Warning: Wed Dec 09 22:46:52 CET 2015 WARN: Establishing SSL connection without server's identity verification i
阅读全文
摘要:在eclipse4.8.2中运行tomcat8.5项目时,提示出错: Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try
阅读全文
摘要:1、修改网络连接IPV4设置为固定IP IP地址:192.168.100.8子网掩码:255.255.255.0默认网关:192.168.100.1首选DNS:192.168.100.1 2.修改..\app\admin\product\11.2.0\dbhome_1\NETWORK\ADMIN\l
阅读全文
摘要:ORA-12638: 身份证明检索失败
阅读全文
摘要:Microsoft Windows [版本 10.0.16299.192](c) 2017 Microsoft Corporation。保留所有权利。 C:\WINDOWS\system32>echo %ORACLE_SID%%ORACLE_SID% C:\WINDOWS\system32>set
阅读全文
摘要:重新安装系统后,plsql连接数据库中文为乱码,经典的 ?网上查了很多方法, 总结一下,不过不知道是哪个其作用了。1. 注册表:2. 环境变量这两个方法,不知道是哪个起作用了,最好两个都使用!
阅读全文
摘要:下载:http://download.oracle.com/otn/other/ole-oo4o/ODTwithODAC1110720.zip?AuthParam=1414811820_e61f2ffaee346837f680d92d47d75d16这个是老版本支持.net framework 3....
阅读全文
摘要:LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name.txt' [REPLACE | IGNORE] INTO TABLE tbl_name [FIELDS [TERMINATED BY 'string'] [[OPTIONA
阅读全文
摘要:一、权限表存取过程mysql数据库中的3个权限表:user 、db、 host权限表的存取过程是:1)先从user表中的host、 user、 password这3个字段中判断连接的IP、用户名、密码是否存在表中,存在则通过身份验证;2)通过权限验证,进行权限分配时,按照user db tablep
阅读全文
摘要:(互联网文档整理) MySQL的用户管理,指的是哪个用户可以连接服务器,从哪里连接,连接后能做什么. MySQL中grant语句创建mysql用户并指定其权限,而revoke语句删除权限。两条语句实现了mysql数据库的用户管理,并提供与直接操作这些表的内容不同的另一种方法。 create和revo
阅读全文
摘要://登录MYSQL @>mysql -u root -p @>密码 //创建用户 insert into mysql.user(host,user,password) values ("localhost","hbchen",p assword("hbchen")); 这样就创建了一个名为:hbch
阅读全文
摘要:1.直接在数据库中修改记录 mysql> use mysql mysql> update user set password = password(”new_password”) where user = “user_name”; mysql> flush privileges; 其实这种方法就是更
阅读全文