[JAVA+oracle] database comprehensive experiment -- educational administration management system

preface This experiment used javaswing, which has not been written for a long time, in which the use of various components took some time to review; The biggest problem I encountered was how to connect java and oracle. This problem made me work all night. At the beginning, I used eclipse, and the code was no problem. I couldn't connect with li ...

Added by velkymx on Fri, 28 Jan 2022 07:58:45 +0200

Oracle FAQ

Type of problem: literal does not match format stringField content display NAView all columns in the tableORA-00904: invalid identifier is invalid(full) year must be between -4713 and 9999, and not be 0Judge whether oracle is not emptydate format picture ends before converting entire input Demand: query by using date as criteria The tables ...

Added by arun4444 on Thu, 27 Jan 2022 17:10:34 +0200

Is it difficult to install Oracle database on Linux? With this, anyone can!!!

Introduction to the author Author: Lucifer Liu, member of China DBA Alliance (ACDU).At present, he is engaged in Oracle DBA and has been engaged in Oracle database development, mainly serving manufacturing, automotive finance and other industries.Now it has Oracle OCP and OceanBase OBCA certification, and is good at Oracle database operatio ...

Added by poisa on Tue, 25 Jan 2022 23:42:53 +0200

veri configuration & use of dmhs data comparison tool

VERI description dmhs comes with its own comparison tool. After installing dmhs, you can find it in the bin directory, named dmhs_veri The tool needs to use unixODBC, version 2.3.0 and above, which is used to connect oracle and other databases. If dm, No. VERI needs an AGENT for data acquisition, which is the AGENT service of the comparison t ...

Added by highphilosopher on Sun, 23 Jan 2022 17:00:47 +0200

Oracle Installation and Details

Installation steps 1. Install dependent packages Operating user:root yum -y install binutils compat-libcap1 compat-libstdc++-33 compat-libstdc++-33*i686 compat-libstdc++-33*.devel compat-libstdc++-33 compat-libstdc++-33*.devel gcc gcc-c++ glibc glibc*.i686 glibc-devel glibc-devel*.i686 ksh libaio libaio*.i686 libaio-devel libaio-devel*.d ...

Added by BAM1979 on Fri, 21 Jan 2022 07:34:31 +0200

Multiple sorts of ORACLE ORDER BY

1. Sort by single field Ascending order: order by ASC (default) Descending order: ORDER BY DESC Query results are returned in the specified order. When actually extracting data or generating reports, they are generally viewed in a certain order. For example, you want to view the information of employees employed by the company. SELECT emp ...

Added by moonshaden on Thu, 06 Jan 2022 02:15:00 +0200

Heterogeneous migration Oracle's past and present life -- Huawei cloud + Ugo + DRS

1, Database localization backgroundracle is still the greatest database so far. The Oracle versions we have seen or heard of in our generation are 8i and 9i. The release dates are 1998 and 2001. The earliest release date of Oracle can be traced back to the 1960s and 1970s. At that time, oracle was called RSi (Relational Software, Inc). Oracle d ...

Added by prc on Wed, 05 Jan 2022 03:28:53 +0200

Introduction to JOIN clause in SQL

This article mainly introduces the relevant knowledge of JOIN clause in SQL (Structured Query Language), and introduces the common usage of JOIN through usage examples. Note: the usage example in this article is for MySQL database. 1 OverviewThe JOIN clause in SQL is used to combine rows from two or more tables. In actual database applications, ...

Added by fukas on Mon, 03 Jan 2022 23:22:33 +0200

Oracle analysis function usage

1. What is a window function? Window functions are also analysis functions. Oracle from 8.1 6 start to provide window function, which is used to calculate some aggregate value based on group, The window function specifies the data window size of the analysis function. The data window size may change with the change of rows. Unlike aggregat ...

Added by FireWhizzle on Wed, 29 Dec 2021 00:18:58 +0200

Oracle query statement

1, Multi table query multi-table query   -- merge union   -- intersection intersect   -- subtraction minus The INTERSECT operator returns only the common rows of the two queries For example: SELECT orderno FROM order_master INTERSECT SELECT orderno FROM order_detail; The MINUS operator returns rows that appear in the sec ...

Added by MVSS on Tue, 28 Dec 2021 15:01:09 +0200