Java Concurrent Programming Notes: Excutors Framework for J.U.C: ThreadPool Executor

Introduction to ThreadPool Executor stay J.U.C. Excutors Framework: Excutors Framework Design Concept ThreadPool Executor has been briefly introduced in this chapter. Through the Executors factory, users can create the executor objects they need. ThreadPool Executor is an executor, or thread pool, that implements the ExecutorService interface ...

Posted by nagasea on Wed, 24 Jul 2019 19:58:54 -0700

How to get the execution plan

Links to the original text: http://www.cnblogs.com/riasky/p/3507598.html Execution planning is a commonly used assistant tool for DBA diagnostic problems. Using it, we can find out how resources are consumed or whether the optimizer has ...

Posted by dt192 on Mon, 22 Jul 2019 00:25:15 -0700

Oracle 11g RAC on RHEL 6.9 Installation Manual

1. Installation instructions1. Environmental description System Version Database Version Framework IP Address patch rhel6.9 11.2.0.4 RAC 192.168.3.2 29698727 rhel6.9 11.2.0.4 RAC 192.168.3.3 29698727 2. The software storage location is planned as follows: Software Storage location Grid /u01/11.2.0/grid Oracle /u01/app/oracle/p ...

Posted by son.of.the.morning on Sat, 20 Jul 2019 15:23:22 -0700

Modification Method of Forgetting MySQL Password under windows

1. The Method of Modifying MySQL Password under windows If you forget MySQL's password under Windows, you can do this: 1. Close the running mysql service: net stop mysql or terminate the mysqld.exe process in windows Task Manager or find the mysql service in the management tool and stop it; The code is as follows: C:\Users\Administrator& ...

Posted by segwaypirate on Wed, 17 Jul 2019 18:02:39 -0700

Java Reference Source Analysis

@(Java)[Reference] Java Reference Source Analysis Reference objects encapsulate references to other objects and can operate like normal objects, supporting interaction with garbage collectors under certain restrictions.You can use the Reference object to reference other objects, but it will eventually be recycled by the garbage collector.Progra ...

Posted by not_skeletor on Wed, 17 Jul 2019 09:47:56 -0700

Dynamic Sorting JavaBean s

In Java, if you sort objects, you can consider implementing the Comparable interface, but once the properties that need to be sorted are specified, they cannot be modified. The BeanUtils component provides support for JavaBean dynamic sorting, which allows you to specify sorting attributes at runtime. The running effect of the example is shown ...

Posted by High_-_Tek on Tue, 16 Jul 2019 10:14:37 -0700

Python-based Practice of Simple Natural Language Processing

Python-based Practice of Simple Natural Language Processing Subordinate to the author Data Science and Machine Learning Manual for Programmed Apes. Simple Natural Language Processing Based on Python This article is an introduction to simple natural language processing tasks based on Python. All the code in this article is placed in Here . Rec ...

Posted by kykin on Thu, 11 Jul 2019 13:59:54 -0700

Installation of oracle 11g under Debian 8

oracle has never supported Debian systems. How did the leader have to put it on debian, so he started. 1. Create directories and users: /usr/sbin/groupadd -g 501 oinstall && /usr/sbin/groupadd -g 502 dba && /usr/sbin/groupadd -g 503 oper && /usr/sbin/useradd -g oinstall -G dba,oper -d /home/oracle/ -s /bin/bash ora ...

Posted by Typer999 on Tue, 09 Jul 2019 16:14:56 -0700

jdbc Connects to Oracle Database AND Transaction (Unified Transaction Operation)

I. Before Integration into SQL Helper In particular: 1. If there is only select in a transaction, transaction control can be ignored. 2. If there are more than one dml statement (update,insert,delete) in a transaction, the transaction needs to be considered. public class OracleDemo { public static void main(String[] args) { Con ...

Posted by vaaaska on Sat, 06 Jul 2019 15:18:58 -0700

DDL for MySQL operations

Catalog Classification of SQL statements DDL statement Classification of SQL statements DDL (Data Definition Languages) statement: Data Definition Language.These statements define different data segments, Definition of database objects such as databases, tables, columns, indexes, etc.Common statement ke ...

Posted by webpoet on Mon, 01 Jul 2019 09:17:06 -0700