- 博客(11)
- 收藏
- 关注
转载 了解ETL
ETL是将业务系统的数据经过抽取、清洗转换之后加载到数据仓库的过程,目的是将企业中的分散、零乱、标准不统一的数据整合到一起,为企业的决策提供分析依据。ETL是BI项目重要的一个环节。 通常情况下,在BI项目中ETL会花掉整个项目至少1/3的时间,ETL设计的好坏直接关接到BI项目的成败。 ETL的设计分三部分:数据抽取、数据的清洗转换、数据的加载。在设计ETL的时候我们也是从这三部分出发。数据的抽取是从各个不同的数据源抽取到ODS(Operational Data Store,操作型数...
2020-05-29 17:41:46 272
原创 mysql 索引
索引介绍:高效获取数据的数据结构使用B+树结构( 搜索树,并不一定是二叉树)索引是存储在磁盘文件中的(可能是单独是索引文件中,也可能和数据一起存储在数据库文件中)索引的优势和劣势优势:可以提高数据检索效率,降低数据 库的IO成本,类似于书的目录;通过索引列对数据进行检索,降低数据排序的成本,降低了CPU的消耗;劣势:索引回占据磁盘空间;索引虽然会提高查询效率,但是会降低更新表的效率常用索引分类:单列索引:普通索引:mysql 中基本索引,没有什么限制.
2020-05-29 16:24:44 147
原创 关于Object,String类型和 byte[]的互转
import ch.qos.logback.core.encoder.ByteArrayUtil; String s = ByteArrayUtil.toHexString(bytes); byte[] file_bytes= ByteArrayUtil.hexStringToByteArray(str); byte[] file_bytes= ByteArrayUtil.hex...
2019-10-23 09:57:58 522
原创 tomcat 启动报.ClassNotFoundException
信息: Starting Servlet Engine: Apache Tomcat/9.0.8八月 28, 2019 2:48:57 下午 org.apache.jasper.servlet.TldScanner scanJars信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logg...
2019-08-28 14:56:15 1225
原创 eclipse attach source not found
1、点击 attach source....2、选择 External location>>External File。。。3、选择jdk所在目录,选择src.zip4、点击ok,加载资源
2019-08-26 11:09:54 286 1
原创 idea 能启动springboot项目却一直报404
重新打开idea时报错了没注意,启动springboot项目的图标有点奇怪但是依然可以启动服务器输入地址运行却一直报404错误:Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback.Fri Oct 19 13:58:38 C...
2018-10-21 21:10:16 5160
原创 maven中mybatis反向生成
pom.xml<groupId>org.mybatis.generator</groupId><artifactId>mybatis-generator-maven-plugin</artifactId><version>1.3.5</version><configuration> <!-
2018-07-05 10:38:45 673
原创 tomcat启动问题
tomcat服务器启动失败,找不到已删除文件,严重: Error starting static Resourcesjava.lang.IllegalArgumentException: Document base E:\apache-tomcat-7.0.53\webapps\zengssh(已删除) does not exist or is not a readable directory严重...
2018-04-03 13:02:00 139
原创 consoles打印数据库字段
没添加toString()方法:cn.zeng.po.User@470c7991添加toString()方法@Override public String toString() { return "User [id=" + id + ", loginName=" + loginName + ", loginPwd=" + loginPwd + ", username=" + usernam...
2018-03-30 22:30:02 222
原创 Query query = session.createQuery("from t_user u where u.loginName = :loginName and u.loginPwd
org.hibernate.hql.internal.ast.QuerySyntaxException: t_user is not mapped @Override public User getUserByUserNameAndPwd(String loginName, String loginPwd) throws Exception { Session session = null;...
2018-03-30 16:55:37 2884
原创 Myeclipse hibernate数据库反向生成数据库操作出错 hql
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1410818077.t_user where id=21' at line 1org.hibernate.exception....
2018-03-30 16:29:42 164
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人