Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit acb6f11

Browse files
committed
update
1 parent ae2fa81 commit acb6f11

25 files changed

+97
-175
lines changed

.codeclimate.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ engines:
77
checks:
88
MD034:
99
enabled: true
10+
MD013:
11+
enabled: true
1012
ratings:
1113
paths: []
1214
exclude_paths: []

DB学习之路.md

Lines changed: 24 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# DB学习之路 [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
22

3-
# 通用:
4-
53
* <http://db-engines.com>
64

75
* Tech On The Net: <http://www.techonthenet.com/index.php>
@@ -28,8 +26,7 @@
2826
* Java 6 RowSet 使用完全剖析: <https://www.ibm.com/developerworks/cn/java/j-lo-java6rowset/>
2927
* Hibernate与autoCommit: <http://www.cnblogs.com/jiangxinnju/p/7429951.html>
3028

31-
32-
# MySQL
29+
## MySQL
3330

3431
* <http://www.mysql.com/>
3532
* <http://dev.mysql.com/doc/#manual>
@@ -57,8 +54,7 @@
5754
* Spring 事务 readOnly 到底是怎么回事?<http://www.cnblogs.com/hackem/p/3890656.html>
5855
* 解决MySQL查询不区分大小写: <https://my.oschina.net/xiangtao/blog/33983>
5956

60-
61-
# SQL Server
57+
## SQL Server
6258

6359
* SQL Server: <https://msdn.microsoft.com/library/bb545450.aspx>
6460
* Transact-SQL 参考: <https://msdn.microsoft.com/zh-cn/library/bb510741>(v=sql.105).aspx
@@ -80,28 +76,22 @@
8076
* SQL 中 where 1=1 和 1=0的 作用: <http://blog.csdn.net/wanghai__/article/details/4813909>
8177
* left join on 和where条件的放置: <http://blog.csdn.net/muxiaoshan/article/details/7617533>
8278

83-
84-
## SQL Server不同版本的驱动
79+
### SQL Server不同版本的驱动
8580

8681
* msbase.jar、mssqlserver.jar、msutil.jar 在连接数据时候需要手动导入驱动包,即手动导入class.forName(驱动名称),支持sql2000
8782
* sqljdbc.jar 应用程序必须首先按class.forName(驱动名称)注册驱动程序。Jdk1.6以上版本不推荐使用.支持sql2005,sql2008
8883
* sqljdbc4.jar DriverManager.getConnection方法得到了增强,可自动加载 JDBC Driver。因此使用sqljdbc4.jar 类库时,应用程序无需调用 Class.forName 方法来注册或加载驱动程序。调用 DriverManager 类的 getConnection 方法时,会从已注册的 JDBC Driver 集中找到相应的驱动程序。sqljdbc4.jar 文件包括“META-INF/services/java.sql.Driver”文件,后者包含.sqlserver.jdbc.SQLServerDriver 作为已注册的驱动程序。现有的应用程序(当前通过使用 Class.forName 方法加载驱动程序)将继续工作,而无需修改。要求使用 6.0 或更高版本的JRE,支持sql2005,sql2008
8984

90-
91-
92-
93-
## 全文索引和普通索引的区别
85+
### 全文索引和普通索引的区别
9486

9587
两种索引的功能和结构都是不同的,普通索引的结构主要以B+树和哈希索引为主,用于实现对字段中数据的精确查找,比如查找某个字段值等于给定值的记录,A=10这种查询,因此适合数值型字段和短文本字段。全文索引是用于检索字段中是否包含或不包含指定的关键字,有点像搜索引擎的功能,因此全文索引内部采用的是与搜索引擎相同的倒排索引结构,其原理是对字段中的文本进行分词,然后为每一个出现的单词记录一个索引项,这个索引项中保存了所有出现过该单词的记录的信息,也就是说在索引中找到这个单词后,就知道哪些记录的字段中包含这个单词了。因此适合用大文本字段的查找。大字段之所以不适合做普通索引,最主要的原因是普通索引对检索条件只能进行精确匹配,而大字段中的文本内容很多,通常也不会在这种字段上执行精确的文本匹配查询,而更多的是基于关键字的全文检索查询,例如你查一篇文章信息,你会只输入一些关键字,而不是把整篇文章输入查询(如果有整篇文章也就不用查询了)。而全文索引正是适合这种查询需求。
9688

97-
## 提示找不到存储过程(SQLServer)
89+
### 提示找不到存储过程(SQLServer)
9890

9991
在sql server 里新建了几个存储过程,每次都是建了之后,存储过程是可以看见的,但用exec语句的时候,却一直有红色波浪线提示找不到存储过程,但是直接执行,却又是可以执行成功的,每次都需要重新打开ssms,红色的波浪线提示才会取消。
10092
原因是这样的.你的SQL Server 客户端,在连接到 SQL Server 数据库以后。会自动读取数据库的数据字典信息。也就是当前数据库,有哪些表/字段/视图/存储过程等基础信息。保存在客户端的内存里面。这样。当你在客户端输入 SQL 语句的时候,输入表名字.会自动弹出这个表的字段列表让你选择。但是当你新建了一个对象的时候,例如表或者上面那个例子,新建存储过程abc这个时候,数据库那里已经有存储过程abc 了。但是客户端的缓存里面并没有存储过程 abc 的信息。因为内存里面的信息没有更新。因此在客户端那里。输入EXEC abc,abc下有红线。将客户端关闭后,重新打开,由于客户端重新加载了数据库的基础信息。知道了当前数据库里面,有一个名字叫 abc 的存储过程,因此就不出红线了。
10193

102-
103-
104-
# Oracle Database
94+
## Oracle Database
10595

10696
* Oracle Database DownLoad: <http://www.oracle.com/technetwork/cn/database/enterprise-edition/downloads/index.html>
10797
* Oracle SQL Developer: <http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html>
@@ -166,7 +156,6 @@
166156

167157
* ToadWorld: <http://www.toadworld.com/>
168158

169-
170159
* Oracle系统表整理+常用SQL语句收集: <http://www.cnblogs.com/jiangxinnju/p/5840420.html>
171160
* Unix/Linux操作系统中如何在sqlplus/rman中使用方向键: <http://www.cnblogs.com/jiangxinnju/p/7469325.html>
172161
* oracle表空间表分区详解及oracle表分区查询使用方法(转+整理): <http://www.cnblogs.com/jiangxinnju/p/6284096.html>
@@ -235,20 +224,20 @@
235224
* 忘记oracle的sys用户密码怎么修改以及Oracle 11g 默认用户名和密码: <http://www.cnblogs.com/jiangxinnju/p/7928029.html>
236225
* navicat 连接Oracle 报错:Cannot load OCI DLL, 126: <https://my.oschina.net/xqx/blog/340743>
237226

238-
## oracle疑难问题排查集:
227+
### oracle疑难问题排查集:
239228

240229
* 数据库无响应,出现很多tns的错误: <http://www.itpub.net/thread-1359536-1-1.html>
241230
* oracle 11g不能连接报ORA-12537+ora-609解决: <http://www.cnblogs.com/hanbo112/p/4583047.html>
242231
* TNS-12537 TNSconnection closed ORA-609错误处理: <http://blog.sina.com.cn/s/blog_4bad366d0101oea2.html>
243232
* ORA-3136、TNS-12535 12170 12606: <http://blog.chinaunix.net/uid-20276248-id-92210.html>
244233
* 关于 Fatal NI connect error 12170: <http://blog.csdn.net/liqfyiyi/article/details/7107249>
245234

246-
## PL/SQL Developer
235+
### PL/SQL Developer
247236

248237
* <http://www.allroundautomations.com/registered/plsqldev.html>
249238
* 配置:localhost:1521/orcl
250239

251-
## Oracle 11g服务详细介绍及哪些服务是必须开启的?
240+
### Oracle 11g服务详细介绍及哪些服务是必须开启的?
252241

253242
成功安装Oracle 11g后,共有7个服务,这七个服务的含义分别为:
254243

@@ -264,13 +253,13 @@
264253

265254
注:ORCL是数据库实例名,默认的数据库是ORCL,你可以创建其他的,即OracleService+数据库名。
266255

267-
## ORACLE_HOME/ORACLE_SID
256+
### ORACLE_HOME/ORACLE_SID
268257

269258
ORACLE_HOME 安装目录
270259
ORACLE_SID 实例ID
271260
一台linux机器上安装一个oracle,两个实例,分别对应两个用户。切换到对应用户时 echo $ORACLE_SID会显示各自的实例
272261

273-
## ESCAPE关键字用法
262+
### ESCAPE关键字用法
274263

275264
  定义:escape关键字经常用于使某些特殊字符,如通配符:'%','_'转义为它们原来的字符的意义,被定义的转义字符通常使用'\',但是也可以使用其他的符号。实例:
276265

@@ -284,8 +273,7 @@ ORACLE_SID 实例ID
284273
1.使用 ESCAPE 关键字定义转义符。在模式中,当转义符置于通配符之前时,该通配符就解释为普通字符。
285274
2.ESCAPE 'escape_character' 允许在字符串中搜索通配符而不是将其作为通配符使用。escape_character 是放在通配符前表示此特殊用途的字符。
286275

287-
288-
# DB2
276+
## DB2
289277

290278
* 官网:<http://www-01.ibm.com/software/data/db2/>
291279
* DB2China:<http://www.db2china.net/>
@@ -295,25 +283,22 @@ ORACLE_SID 实例ID
295283
* IBM DB2关键特性解析:DB2分区特性: <http://tech.it168.com/a2012/0306/1321/000001321022_2.shtml>
296284
* db2建立schema: <http://guoyanxi.iteye.com/blog/910755>
297285

298-
# Oracle Berkeley DB
286+
## Oracle Berkeley DB
299287

300288
* Oracle Berkeley DB:<http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html>
301289

302-
# MariaDB
290+
## MariaDB
303291

304292
* <https://mariadb.org/>
305293

306-
307-
308-
# SQLite
294+
## SQLite
309295

310296
* <http://www.sqlite.org/>
311297
* DB Browser for SQLite: <http://sqlitebrowser.org/>
312298
* SQLite Expert: <http://www.sqliteexpert.com/index.html>
313299
* SQLCipher: <https://www.zetetic.net/sqlcipher/>
314300

315-
316-
# mongodb
301+
## mongodb
317302

318303
* <https://www.mongodb.org/>
319304
* <https://docs.mongodb.org/manual/>
@@ -329,19 +314,17 @@ ORACLE_SID 实例ID
329314
* Morphia(The Java Object Document Mapper for MongoDB): <http://mongodb.github.io/morphia/>
330315
* NoSQL 之 Morphia 操作 MongoDB: <http://www.cnblogs.com/hoojo/archive/2012/02/17/2355384.html>
331316

332-
333-
# Teradata
317+
## Teradata
334318

335319
* Teradata Express for VMware Player: <http://downloads.teradata.com/download/database/teradata-express-for-vmware-player>
336320
* Teradata Aster: <http://developer.teradata.com/aster>
337321
* Teradata 教程: <http://www.w3cschool.cn/teradata/>
338322

339-
# GreenPlum
323+
## GreenPlum
340324

341325
* <https://pivotal.io/big-data/pivotal-greenplum>
342326

343-
344-
# hbase
327+
## hbase
345328

346329
* <http://hbase.apache.org/>
347330
* HBase 官方文档(中文):<http://yankaycom-wordpress.stor.sinaapp.com/hbase/book.html?q=/wp-content/hbase/book.html>
@@ -367,13 +350,13 @@ ORACLE_SID 实例ID
367350
* bigtable model with cassandra and hbase: <http://horicky.blogspot.com/2010/10/bigtable-model-with-cassandra-and-hbase.html>
368351
* 编译和使用hive与HBase通信包--hive-hbase-handler.jar及下载: <http://www.aboutyun.com/thread-7817-1-1.html>
369352

370-
# Hive
353+
## Hive
371354

372355
* <http://hive.apache.org/>
373356
* <https://cwiki.apache.org/confluence/display/Hive/Home>
374357
* 使用Hive读取Hbase中的数据: <http://victorzhzh.iteye.com/blog/972406>
375358

376-
# Pig
359+
## Pig
377360

378361
* <http://pig.apache.org/>
379362
* 使用 Apache Pig 处理数据: <http://www.ibm.com/developerworks/cn/linux/l-apachepigdataquery/>
@@ -383,8 +366,7 @@ ORACLE_SID 实例ID
383366
* Apache Pig中文教程(进阶): <http://www.codelast.com/?p=4249>
384367
* 使用Apache Pig时应该注意/避免的操作或事项: <http://www.codelast.com/?p=4577>
385368

386-
387-
# Others
369+
## Others
388370

389371
* GBase: <http://www.gbase.cn/>
390372
* Vertica: <https://www.vertica.com/>
@@ -393,8 +375,8 @@ ORACLE_SID 实例ID
393375
* BlinkDB: <http://blinkdb.org/>
394376
* H2 Database Engine: <http://www.h2database.com/html/main.html>
395377

396-
# 数据模型
378+
## 数据模型
397379

398-
## PowerDesigner两张表主键如何设成一致的
380+
### PowerDesigner两张表主键如何设成一致的
399381

400382
设置方法:Tools--->Model Options->Model Settings。在Data Item组框中定义数据项的唯一性代码选项(Unique Code)与重用选项(Allow Reuse)。把allow reuse选上,去掉unique code选项。

Docker学习之路.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1+
# Docker学习之路
2+
13
* <http://www.docker.com/>
24
* <https://hub.docker.com/>
35
* About images, containers, and storage drivers: <https://docs.docker.com/engine/userguide/storagedriver/imagesandcontainers/>
46

5-
67
* Kubernetes: <https://kubernetes.io/>
78
* Kubernetes指南: <https://kubernetes.feisky.xyz/>
89

9-
10-
1110
* Docker —— 从入门到实践: <https://www.gitbook.com/book/yeasy/docker_practice/details>
1211
* docker中文: <http://www.docker.org.cn/>
1312
* DOCKER windows安装: <http://blog.csdn.net/zistxym/article/details/42918339>

Erlang学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# Erlang学习之路
2+
13
* <http://www.erlang.org/>
24
* <http://www.erlang-cn.com/>

Fortran学习之路.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
# Fortran学习之路
2+
13
* <https://en.wikipedia.org/wiki/Fortran>
24
* Welcome to the home of GNU Fortran: <https://gcc.gnu.org/fortran/>
35
* Fortran中文网: <http://www.fortran.cn/>
46
* Fortran77和90/95编程入门: <http://micro.ustc.edu.cn/Fortran/ZJDing/>
57
* Approximatrix: <http://approximatrix.com/>
68
* Fortran Coder: <http://fcode.cn/>
79

8-
# Photran
10+
## Photran
911

1012
* 项目地址:<http://www.eclipse.org/photran/>
1113
* 安装说明:<http://www.eclipse.org/photran/download.php>

Golang学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Golang学习之路
2+
13
* <https://golang.org/>
24
* <https://golang.org/doc/>
35
* Go (programming language): <https://en.wikipedia.org/wiki/Go_%28programming_language%29>

Groovy学习之路.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1+
# Groovy学习之路
2+
13
* 官网:<http://www.groovy-lang.org/>
24
* Groovy with Eclipse - Tutorial: <http://www.vogella.com/tutorials/Groovy/article.html>
35
* 实战 Groovy: 在 Java 应用程序中加一些 Groovy 进来:<http://www.ibm.com/developerworks/cn/java/j-pg05245/>
4-
5-
6-
# Grape
7-
8-
嵌入到Groovy的JAR依赖项管理器。
9-
10-
* <http://docs.groovy-lang.org/latest/html/documentation/grape.html>
6+
* Grape: <http://docs.groovy-lang.org/latest/html/documentation/grape.html>

IO学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# IO学习之路
2+
13
<http://iolanguage.org/>
24

35
* <http://iolanguage.org/scm/io/docs/IoGuide.html>

Lua学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# Lua学习之路
2+
13
* <http://www.lua.org/>

Markdown学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Markdown学习之路
2+
13
* Markdown 语法说明 (简体中文版): <http://wowubuntu.com/markdown/>
24
* Eclipse-Markdown-Editor-Plugin: <https://github.com/winterstein/Eclipse-Markdown-Editor-Plugin>
35

Nginx学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# Nginx学习之路
2+
13
* <http://nginx.org/>
24
* Pre-Built Packages for Stable version: <http://nginx.org/en/linux_packages.html#stable>

OJ学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# OJ学习之路
2+
13
* codevs: <http://codevs.cn/>
24
* 九度OJ: <http://ac.jobdu.com/>
35
* hihocoder: <http://hihocoder.com/>

PHP学习之路.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
* <http://php.net/>
1+
# PHP学习之路
22

3+
* <http://php.net/>
34

45
* phpStudy: <http://www.phpstudy.net/>
56
* WAMPSERVER: <http://www.wampserver.com/>
67
* LNMP一键安装包: <http://lnmp.org/>
78
* AppServ : Apache + PHP + MySQL: <http://www.appservnetwork.com/en/>
89
* XAMPP Apache + MariaDB + PHP + Perl: <https://www.apachefriends.org/zh_cn/index.html>
910

10-
11-
# PHPUnit
11+
## PHPUnit
1212

1313
* <https://phpunit.de/>

Pascal与Delphi学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Pascal与Delphi学习之路
2+
13
* Pascal (programming language): <https://en.wikipedia.org/wiki/Pascal_>(programming_language)
24
* Delphi (programming language): <https://en.wikipedia.org/wiki/Delphi_>(programming_language)
35
* free pascal: <http://www.freepascal.org/>

Perl学习之路.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Perl学习之路
2+
13
* The Perl Programming Language: <https://www.perl.org/>
24
* Perl FAQ: <http://learn.perl.org/faq/>
35
* Perl programming documentation: <http://perldoc.perl.org/>
@@ -14,7 +16,7 @@
1416

1517
* 功能丰富的 Perl: 一行程序 101: <http://www.ibm.com/developerworks/cn/linux/sdk/perl/l-p101/index.html>
1618

17-
# EPIC
19+
## EPIC
1820

1921
* 项目地址:<http://www.epic-ide.org/>
2022
* 安装说明:<http://www.cnblogs.com/itech/archive/2010/02/23/1671676.html>
@@ -25,5 +27,4 @@
2527

2628
## Open Perl IDE
2729

28-
* <https://sourceforge.net/projects/open-perl-ide/>
29-
30+
* <https://sourceforge.net/projects/open-perl-ide/>

Prolog学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Prolog学习之路
2+
13
* Visual Prolog: <http://www.visual-prolog.com/vip/example/>
24
* SWI-Prolog: <http://www.swi-prolog.org/>
35
* Amzi! Prolog + Logic Server™: <http://www.amzi.com/AmziPrologLogicServer/index.php>

Python学习之路.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
# Python学习之路
2+
13
* <https://www.python.org/>
24
* <https://docs.python.org/3/>
35
* PyPI - the Python Package Index: <https://pypi.python.org/pypi>
46
* pip: <https://pypi.python.org/pypi/pip>
57
* setuptools: <https://pypi.python.org/pypi/setuptools>
6-
* <https://bitbucket.org/pypa/setuptools>
8+
* setuptools: <https://bitbucket.org/pypa/setuptools>
79
* spyder: <https://pypi.python.org/pypi/spyder/>
810
* Python Enhancement Proposals: <http://legacy.python.org/dev/peps/>
911

@@ -41,11 +43,9 @@
4143

4244
* Python zipfile报错问题: <http://blog.csdn.net/u012063703/article/details/43448397>
4345

44-
# PyDev
46+
## PyDev
4547

4648
* 项目地址:<http://www.pydev.org/>
4749
* 安装说明:<http://www.pydev.org/download.html>
4850
* 与之相关的LiClipse项目地址:<http://www.liclipse.com/liclipse/>
49-
* PyDev Manual:<http://www.pydev.org/manual.html>
50-
51-
51+
* PyDev Manual:<http://www.pydev.org/manual.html>

Ruby学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Ruby学习之路
2+
13
* <https://www.ruby-lang.org/zh_cn/>
24
* Help and documentation for the Ruby programming language: <http://ruby-doc.org/>
35
* 寻找、安装以及发布 RubyGems: <https://rubygems.org/>

Rust学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# Rust学习之路
2+
13
* <https://www.rust-lang.org/>
24
* Rust Documentation: <http://doc.rust-lang.org/index.html>

R学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# R学习之路
2+
13
* <https://www.r-project.org/>
24
* The Comprehensive R Archive Network: <https://cran.r-project.org/>
35

0 commit comments

Comments
 (0)