PostgreSQL spatial aggregation performance - administrative area, electronic fence spatial aggregation - time, space thermal map

Label PostgreSQL, spatial aggregation, spatial heat map, administrative region, electronic fence background For a certain time interval (or other conditions), how many objects (space point information) appear in some fences and administrative areas (polygon information), and render these polygons by color depth. for example Example 1. Are ...

Posted by ZephyrWest on Thu, 21 Nov 2019 14:12:51 -0800

oracle uses adrci to clean up log files (trace files, incident files, listener log files)

There are usually many log files in oracle. When encountering an abnormal situation, a large number of logs will be generated, resulting in disk space shortage. Therefore, the corresponding documents need to be cleaned. Including trace file, incident file, listener log file, etc oracle in 11g provides a command-line tool of A ...

Posted by fatmart on Sat, 16 Nov 2019 06:51:35 -0800

New feature of Oracle 12c: online conversion of non partitioned tables to partitioned tables

concept Nonpartitioned tables can be converted to partitioned tables online. Indexes are maintained as part of this operation and can be partitioned as well. The conversion has no impact on the ongoing DML operations. You can convert non partitioned tables to online partitioned tables. Indexes are maintained as part of the op ...

Posted by SoulAssassin on Fri, 15 Nov 2019 10:13:30 -0800

JDBC programming - get Connection and common problems

Connect to Oracle using JDBC Implementation ideas: Use a file named oracle.properties, which contains the Oracle URL, User, Password and driver classes. Through the input stream of ClassLoader, the input stream contains the Oracle connection initialization parameters of the input program. The input stream is loaded in the Properties load. Get t ...

Posted by dotbob on Fri, 15 Nov 2019 05:17:58 -0800

Rebuild control file

1 Description The reconstruction control file can only be used in case of necessity. It is generally used in the following situations: 1 all current copies of the control file have been lost or are corrupted 2 you are restoring a backup in which the control file is corrupted or missing 3 you need to change a hard li ...

Posted by rsmarsha on Fri, 08 Nov 2019 11:23:15 -0800

Technology sharing | login MySQL safely without password

By Daniel gusman BurgosGuan ChanglongOriginal text: https://www.percona.com/blog/... Some people say the best password is one you don't have to remember. The auth? Socket plug-in and MariaDB's UNIX? Socket make this idea possible on MySQL. auth_socket: https://dev.mysql.com/doc/ref... unix_socket: https://mariadb.com/kb/en/lib... Although t ...

Posted by Baumusu on Fri, 08 Nov 2019 02:27:29 -0800

A record of oracle 11g data import

1. Import Oracle database data into test library environment 172.15.1.51 root  kic@test 172.15.1.52 root  Generally, the data is imported into the environment of 52 (the configuration is relatively low), and then the data is imported into the environment of 51 (the environment used in this document) [root@NC-TEST ~]# df -h Filesystem ...

Posted by alcapone on Thu, 07 Nov 2019 07:59:43 -0800

oracle installation and visit [3] to install oracle 11g in CentOS7

After understanding the installation of Oracle 10g and 11g in win10, this article will cover the installation of Oracle 11g in CentOS 7. 1. Preconditions CentOS7 workstation installed jdk8 has been installed 2. Software download Baidu SkyDrive Links: https://pan.baidu.com/s/1u3Qjguim-7Z-4GoHDF8Pxg Extraction code: gwig 3. Co ...

Posted by limey on Wed, 06 Nov 2019 13:01:31 -0800

oracle's advanced use [5] stored procedure, stored function and package

Stored procedures are used to perform specific operations and complete certain functions. They can have input parameters in and output parameters out. Store functions are used to return specific results. Use the return clause at the head of the function, specify the type of return, and use the return clause in the execution part to ...

Posted by alconebay on Tue, 05 Nov 2019 10:13:20 -0800

Realization of correct posture of multi thread based on Concurrency

How many ways to implement multithreading? For the implementation of JAVA multithreading, both online and all kinds of books have the same view, some say two, some say four, we can see many kinds of answers in a glance at Baidu How many are they? Let's look up the JAVA API document: https://docs.oracle.com/javase/9/docs/api/java/lang/Thread.ht ...

Posted by corkg on Mon, 04 Nov 2019 19:51:27 -0800