Oracle view, index, constraint, transaction, database paradigm

🍅 Programmer Xiao Wang's blog: Programmer Xiao Wang's blog 🍅 Welcome to like 👍 Collection ⭐ Leaving a message. 📝 🍅 If you have an editor's error and contact the author, if you have a good article, welcome to share it with me, I will extract the essence and discard the dross. 🍅 Learning route of java self-study: Learning route of ...

Posted by BigX on Thu, 10 Mar 2022 17:13:11 +0100

[webmaster tool] how do I save my personal website after jsdelivr hangs up (halo)

preface As we all know, at the end of last year, jsdelivr, a well-known free CDN service provider, had no domestic CDN acceleration due to the problem of domain name filing in the mainland. At present, it can only be parsed overseas, which is not only slow, but also occasionally unable to connect to the server. Therefore, many domestic website ...

Posted by hurricane on Mon, 07 Mar 2022 19:09:00 +0100

Database must know and know

1. Database and SQL 1-1 introduction to database Our common mysql, SQL Server, DB2, Oracle Database and Postgresql all belong to relational database management system (RDBMS) The tables stored in the database are all sheets, which can be compared to excel data sheets. They are basically the same, just like that. 1-2 introduction to SQL The ...

Posted by Hylian on Mon, 07 Mar 2022 14:00:22 +0100

oralce day 2: simple query

query Simple query Query all mysql: SELECT e.* From emp e oracle: SELECT e.* From emp e; Query specific columns mysql: SELECT e.empno,e.ename,e.job from emp e oracle: SELECT e.empno,e.ename,e.job from emp e Alias use mysql: select e.empno 'Employee number',e.ename 'Employee name',e.job 'Employee position',e.mgr 'Superior ...

Posted by camoconnell.com on Fri, 04 Mar 2022 22:08:31 +0100

Spring Boot two lines of code to easily achieve internationalization

i18n internationalization In development, Internationalization, also known as localization, means that a website (or application) can support multiple different languages, that is, different words can be displayed according to the language type and country / region of the user. It can make it easy for users in different countries and languages ...

Posted by milind24 on Thu, 03 Mar 2022 22:11:38 +0100

Oracle database statement summary

Introduction and description Four traditional mainstream databases:     Oracle MySQL SqlServer DB2 Non relational database: Redis MongoDB The mainstream database is relational database: there is an association relationship between tables When we say install database, we mean install database service When creating a database, it refers t ...

Posted by rockobop on Fri, 25 Feb 2022 14:05:34 +0100

[Oracle][Postgresql][mysql] the following table fields of the three database products have null values or are null. Test whether the index creation is effective

/******************* postgresql database test starts***********************/   --This test is based on pg database version 10.11 postgres=# select version();                            version -------------------------------------------------------------  PostgreSQL 10.11, compiled by Visual C++ build 1800, 64-bit (1 Row record) --Create a ...

Posted by engelsol on Wed, 23 Feb 2022 15:21:50 +0100

Oracle case: a gc buffer busy acquire diagnosis

This case comes from a production failure of a two node rac of a customer. The phenomenon is that a large area of gc buffer busy acquire leads to business paralysis.First, check the AWR header information and load profile of node 1:1 node AWRKey information points obtained:For LCPU 256 system, AAS=13379.42/59.91=223, indicating that the system ...

Posted by gat on Wed, 23 Feb 2022 04:03:01 +0100

[DB treasure 49] how Oracle sets dB, monitoring and EM startup

1, Windows system Oracle provides the function of starting with the startup of the operating system. There are different setting methods in Windows and Linux. In windows, you can modify "my computer – > management – > services – > oracleservice $oracle_sid", or directly use Win+R to open the running wi ...

Posted by geoffjb on Sat, 19 Feb 2022 15:21:36 +0100

Oracle case: does index range scan really not read multiple blocks?

This case comes from an SQL optimization of a customer in Xi'an. The optimization itself is not complex, but an interesting problem is found, that is, the index range scanning and back table all use multi block reading. Let's take a look at specific cases.SQL text:UPDATE A_INV_PRINT_DET P SET (P.P_POWER, P.N_POWER, P.V_POWER, P.P_KWH_PRC, P.N_K ...

Posted by twilightnights on Fri, 18 Feb 2022 13:50:06 +0100