Oracle ASH Report Generation and Performance Analysis

My SQL tuning column: https://blog.csdn.net/u014427391/article/category/8679315 For local, such as a page list sql, we can use Oracle's execution plan for SQL tuning, but for the whole system, you can know which SQLs are time consuming?Of course, you can get it by checking Oracle's shared pool, but Oracle system itself provides sev ...

Posted by zbert on Sun, 12 May 2019 00:53:15 -0700

Pseudo Columns of ORACLE Official SQL Language Reference Notes

Hierarchical Query Pseudo Columns Sequence pseudorandomSequence pseudocolumns cannot be used in the following constructions: VERSION QUERY pseudocolumn COLUMN_VALUE pseudocolumn OBJECT_ID pseudocolumn OBJECT_VALUE pseudocolumn ORA_ROWSCN pseudocolumn ROWID pseudo column ROWNUM pseudo column XMLDATA pseudocolumns Hierarchi ...

Posted by my8by10 on Sat, 11 May 2019 17:42:32 -0700

Summary of mysql database, tables, table records (part)

Introduction to MySQL 1. Basic concepts of database Database: DataBase is abbreviated as DB Role: Warehouse for permanent storage and management of data 2. Common databases A.MySQL Simple Free Database B.Oracle Large Charge Database C. SQL Server Microsoft C and. Net D.SQLite Embedded Database Andro ...

Posted by sinista on Sat, 11 May 2019 10:51:52 -0700

DB2 row-column conversion pivot/unpovit

BACKGROUND: Recently, in the development of projects, the adjustment of basic indicators is involved. Relevant composite indicators and downstream dependent indicator codes all need to be replayed. unpivot row and column transitions Case: Now there is a fruit table, which records the sales volume of four quarters. Now it is n ...

Posted by Zaxnyd on Fri, 10 May 2019 12:32:52 -0700

ORACLE Paging Query

ORACLE Paging Query Change from: ORACLE Paging Query SQL Syntax - The Most Efficient Paging Writing without ORDER BY sort. (Highest efficiency) After testing, this method has the lowest cost, only one layer nested, and the fastest speed! Even if the amount of data queried is large, it is almost unaffected, and the speed is ...

Posted by dgwade on Fri, 10 May 2019 01:48:40 -0700

MySql implements merging multiple data into one data and dynamically generates a data column name based on multiple data.

Originality: We sometimes encounter this kind of requirement when we are working on a project. hobby with name Zhang San needs to be merged as follows: Of course, you can also merge hobby into one column through mysql's group_comcat. That's very simple. I won't introduce it here. Build tables first, insert data SET NAMES utf8 ...

Posted by gamblor01 on Thu, 09 May 2019 15:02:39 -0700

PL SQL Basic Content (Original)

This section describes the basic contents of PL SQL The sample data listed in this section comes from the emp and dept tables under oracle user scott, as follows: 1. Introduction to plsql: 1. Concept: procedural language, procedural SQL language, is a process-oriented language. On the basis of ordinary sql, the features of programming language ...

Posted by countrydj on Thu, 09 May 2019 09:30:40 -0700

Summary of redis use (redis client use) NoSQL

Summary of redis use (1) (redis client use) NoSQLNoSQLFrom Baidu Encyclopedia NoSQL, refers generally to non-relational databases.With the rise of Internet web2.0 websites, traditional relational databases have been unable to cope with web2.0 websites, especially Web 2.0 pure dynamic websites of super-large-scale and highly concurrent SNS type, ...

Posted by aaronxbond on Wed, 08 May 2019 23:12:38 -0700

Template Method Patterns for Design Patterns (Behavioral Patterns)

[TOC] I. Pattern Definition The template method pattern defines some skeleton methods in an abstract class, and then defers some methods to the inherited class through the method of class inheritance. Template method pattern is a kind of behavioral pattern, and it is a common method. It does not belong to the object behavioral patt ...

Posted by doofystyle on Sun, 05 May 2019 10:16:38 -0700

Oracle 11g Single Machine Installation Manual

Article directory 1 Preparations 1.1 Delete Oracle software before installation 1.2 Create directories 1.3 Connect SFTP tabs in CRT 2 See information about this guide 3 Check Hardware Requirements 3.1 Memory Requirements 3.2 System Architecture 3.3 Disk space required 4. Check software requirements 4.1 Operating System R ...

Posted by smeagal on Sat, 27 Apr 2019 18:20:37 -0700