Oracle analysis function Over()

Over() parsing function Note: aggregate functions (such as sum(), max(), etc.) can calculate some aggregate value based on a group, but aggregate functions can only return one row of records for a group. If you want to return multiple rows of records for a group, you need to use an analysis function. rank()/dense_rank over(partition by ... orde ...

Posted by BruceRowe on Sun, 08 Mar 2020 23:43:43 -0700

Azure configuration management series Oracle Linux (PART2)

Azure configuration management series Oracle Linux (PART1) Azure configuration management series Oracle Linux (PART3) 3 install desktop package in Oracle Linux When the Oracle Linux VM starts and runs, connect to it through an SSH session.   Figure 6: Oracle Linux VM started and running To log in to the system, use the same credentials that w ...

Posted by arnoldd99 on Wed, 04 Mar 2020 03:16:18 -0800

Introduction to libdbclient interface

This is a magical development interface! It supports access to mysql, sqlite, Dream and oracle databases! It provides a unified C++ abstract interface externally, hides the internal implementation details, and has a learning cost of 0 for users! It provides abstract result table objects (result_ta ...

Posted by khovorka on Tue, 03 Mar 2020 19:51:13 -0800

Notes on the development of mybatis+jpa

1. Add, delete, modify and check. 1, For the add operation, if the id is generated automatically, the primary key needs to be returned. Note that if the primary key is of Long type, the int type should also be returned, because mybatis does not support Long.   mybatis ResultMap application My ...

Posted by krraleigh on Sun, 01 Mar 2020 19:20:45 -0800

[MySQL] Use MySQL (connect, select database, display database and table information)

Chapter 3 Using MySQL Article Directory Chapter 3 Using MySQL Connect Select Database Understanding databases and tables Summary Simple Records - MySQL will always - [English]Ben Forta You'll learn how to connect to and log in to MySQL, how to execute MySQL statements, and how to get information ...

Posted by TravisJRyan on Sat, 22 Feb 2020 18:48:14 -0800

oracle 19c virtual automatic index test

1. About testing Recently oracle held a series of online sharing, one of the new features of 19c is automatic indexing. I tested it in docker and failed. [oracle@8aa96a41b58b ~]$ sqlplus / as sysdba SQL*Plus: Release 19.0.0.0.0 - Production on Thu Feb 20 09:44:52 2020 Version 19.3.0.0.0 SQL> EXEC DBMS_AUTO_INDEX.CONFIGURE('AUTO_INDEX_MODE ...

Posted by jabbaonthedais on Fri, 21 Feb 2020 04:58:37 -0800

How do I use stacktrace or reflection to find the caller of a method?

I need to find a caller for a method.Can stacktrace or reflection be used? #1st floor This is part of the code that I wrote based on the tips shown in this topic.Hope to help you. (Please let me know if you have any suggestions to improve this code) Counter: public class InstanceCount{ private static Map<Integer, CounterIn ...

Posted by redking on Thu, 20 Feb 2020 18:09:37 -0800

How to deal with the serious waiting of shared pool in oracle database under linux environment

Recently, many LINUX environment databases of multiple customers have serious wait related to shared pool during peak business hours, including the library cache lock /latch: shared pool wait event, which leads to slow feedback from business users and failure to establish new business connections. &n ...

Posted by Loryman on Sun, 16 Feb 2020 20:52:03 -0800

Java reflection -- Reflection and class operation

Content learned in: edu.aliyun.com 1. Reflection acquisition class structure                              .    if you suddenly find that you need ...

Posted by osram on Thu, 06 Feb 2020 05:25:58 -0800

CommVault common Oracle backup commands

In the process of configuration, initiation and recovery of Oracle database backup, many Oracle database commands are needed. In this chapter, I will sort out the commands for your reference. Oracle user and instance related commands Linux/Unix platform # ps -ef | grep [p]mon orauxdb 18751 1 ...

Posted by n8r0x on Sun, 02 Feb 2020 01:09:46 -0800