复杂和遗留的数据库schema

本文作者:苏生米沿

本文地址:http://blog.csdn.net/sushengmiyan/article/details/50414652

In this chapter, we focus on the most important part of your system: the databaseschema, where your collection of integrity rules resides—the model of the realworld that you’ve created.

If your application can auction an item only once in the real world, your database schema should guarantee that. If an auction always has a starting price, your database model should include an appropriate constraint.

If data satisfies all integrity rules, the data is consistent, a term you’ll meet again in section11.1.

We also assume that consistent data is correct: everything the database states, either explicitly or implicitly, is true; everything else is false.

If you want to know more aboutthe theory behind this approach, look up the closed-world assumption (CWA).

本章,我们主要集中在你系统中最重要的部分,数据库schema,你的完整性规则驻留的地方---你创建的真实世界的模型。如果在真实世界中你的应用程序只能对一件物品竞价一次,你的数据库schema就应保证这点。如果一个竞拍总有一个开始价格,你的数据库模型应该包括一个适当的约束。如果数据满足所有完整性约束,数据就是一致的,这个术语会在11.1章节再次遇到。

我们还假设一致的数据是正确的,数据库所表述的所有数据,无论是显式的还是隐式的,都是正确的,其它的所有都是错误的。如果你想知道这个理论背后的更多知识,请参考封闭世界假设说(CWA)。

Major new features in JPA 2
? Schema generation and execution of custom SQL scripts during bootstrap is now standardized and can be configured on a persistence unit.
? You can map and customize schema artifacts such as indexes and foreign key names with standard annotations.
? You can map foreign keys/many-to-one associations in composite primary keys with @MapsId as “derived identity.”

JPA2的新特性

在启动的时候生成schema和执行自定义的SQL脚本现在已经标准化了,在持久化单元中就可以进行配置了。

你可以映射和自定义schema物件,像索引和外键,使用标准的注解名称。

你可以映射外键、多对一关系,通过使用@mapsid来定义复合主键这样的衍生主键。

Sometimes you can start a project top-down. There is no existing database schema and maybe not even any data—your application is completely new.

Many developers like to let Hibernate automatically generate the scripts for a database schema. You’ll probably
also let Hibernate deploy the schema on the test database on your development machine or your continuous build systems for integration testing.

Later, a DBA will take the generated scripts and write an improved and final schema for production deployment.

The first part of this chapter shows you how to improve the schema from within JPA and Hibernate, to make your DBA happy.
At the other end of the spectrum are systems with existing, possibly complex schemas, with years’ worth of data. Your new application is just a small gear in a big machine, and your DBA won’t allow any (sometimes even non-disruptive) changes to the database.

You need a flexible object/relational mapping so you don’t have to twist and bend the Java classes too much when things don’t fit right away.

This will be the subject of the second half of this chapter, including a discussion of composite primary and foreign keys.

有时候,你可以自顶向下的开始一个工程。你的项目工程是全新的,没有现存的数据库shema甚至没有数据。很多开发者喜欢让hibernate来产生数据库的schema的脚本。你可能让hibernate部署你的测试库在你的开发机器上,或者你的集成测试中。稍晚些,DBA就会拿到生成的脚本,改善一下并且写出改善之后的最终产品发布schema。本章的第一部分就给你展示如何提升hibernate和JPA生成的schema,来让你的DBA高兴。

在光谱的另一端就是集成可能是复杂的schema的具有多年数据价值的系统了。

你的新应用就是一个在大机器上的小齿轮。你的DBA不会允许你进行任何的数据库改变(甚至包括非破坏性的)。你需要一个灵活的对象/关系映射,那样的话,你就不需要为不合时宜的事情扭曲或者弯曲你的java实现类,这是本章第二部分的主题,包括讨论一个复合主键和外键。

摘自 hibernate与JPA 第九章。转载请标明来源,谢谢。

时间: 2024-10-27 06:29:03

复杂和遗留的数据库schema的相关文章

MySQL性能调优与架构设计——第9章 MySQL数据库Schema设计的性能优化

MySQL性能调优与架构设计——第9章 MySQL数据库Schema设计的性能优化 前言: 很多人都认为性能是在通过编写代码(程序代码或者是数据库代码)的过程中优化出来的,其实这是一个非常大的误区.真正影响性能最大的部分是在设计中就已经产生了的,后期的优化很多时候所能够带来的改善都只是在解决前妻设计所遗留下来的一些问题而已,而且能够解决的问题通常也比较有限.本章将就如何在 MySQL 数据库 Schema 设计的时候保证尽可能的高效,尽可能减少后期的烦恼. 9.1 高效的模型设计 最规范的就一定

数据库schema设计与优化

原文地址 1. 前言 对于数据库而言,在日常开发中我们主要的关注点有两块,一个是schema的结构设计,另一个就是索引的优化,这两块是影响我们最终系统结构和性能的关键部分,自然也是我们花费精力最多的部分: 本文主要介绍数据库设计中的一般原则和优化手段,包括数据库的一半范式.反范式设计.数据切分.数据路由与合并等等 2. Schema设计的一般性原则 2.1 概述 范式理论是关系型数据库设计的黄金法则,它提供了数据结构化的理论基础,有效地保证了数据的一致性,应该说,关系型数据库就是在范式的基础上才

数据库Schema两种含义~~

1.数据库Schema有两种含义,一种是概念上的Schema,指的是一组DDL语句集,该语句集完整地描述了数据库的结构.还有一种是物理上的 Schema,指的是数据库中的一个名字空间,它包含一组表.视图和存储过程等命名对象.物理Schema可以通过标准SQL语句来创建.更新和修改.例 如以下SQL语句创建了两个物理Schema: create schema SCHEMA_A;create table SCHEMA_A.CUSTOMERS(ID int not null,……); create s

数据库 schema与catalog

数据库schema与catalog简介 按照SQL标准的解释,在SQL环境下Catalog和Schema都属于抽象概念,可以把它们理解为一个容器或者数据库对象命名空间中的一个层次,主要 用来解决命名冲突问题.从概念上说,一个数据库系统包含多个Catalog,每个Catalog又包含多个Schema,而每个Schema又包含多个数 据库对象(表.视图.字段等),反过来讲一个数据库对象必然属于一个Schema,而该Schema又必然属于一个Catalog,这样我们就可以得到该 数据库对象的完全限定名

C#同步SQL Server数据库Schema

C#同步SQL Server数据库Schema 1. 先写一个sql加工类: using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Text; namespace PinkDatabaseSync { class DBUtility : IDisposable { private string Server; private stri

django “如何”系列9:三合一:利用遗留的数据库、输出csv和输出pdf

如何集成遗留的数据库 django在适合开发新应用的同时,可以可以集成以前遗留的数据库,下面是如何集成一个已经存在的数据库的流程. 给定你的数据库的参数 你需要告诉django你的数据库连接参数以及数据库的名字,你可以通过修改django配置文件的DATABASES中的default连接来给定你的数据库参数 NAME ENGINE USER PASSWORD HOST PORT 自动生成模型 django自带了一个工具inspectdb,这个工具可以通过反溯一个已经存在的数据库来创建一个模型 p

数据库schema的简介

[参考]自百度百科 数据库中的Schema,为数据库对象的集合,一个用户一般对应一个schema. 官方定义如下: A schema is a collection of database objects (used by a user.). schema objects are the logical structures that directly refer to the database’s data. A user is a name defined in the database t

MySQL性能调优与架构设计——第10章 MySQL数据库Schema设计的性能优化

第10章 MySQL Server性能优化 前言: 本章主要通过针对MySQL Server(mysqld)相关实现机制的分析,得到一些相应的优化建议.主要涉及MySQL的安装以及相关参数设置的优化,但不包括mysqld之外的比如存储引擎相关的参数优化,存储引擎的相关参数设置建议将主要在下一章“常用存储引擎的优化”中进行说明. 10.1 MySQL 安装优化 选择合适的发行版本 1. 二进制发行版(包括RPM等包装好的特定二进制版本) 由于MySQL开源的特性,不仅仅MySQL AB提供了多个平

数据库Schema

在学习SQL的过程中,会遇到一个让你迷糊的Schema的概念.实际上,schema就是数据库对象的集合,这个集合包含了各种对象如:表.视图.存储过程.索引等.为了区分不同的集合,就需要给不同的集合起不同的名字,默认情况下一个用户对应一个集合,用户的schema名等于用户名,并作为该用户缺省schema.所以schema集合看上去像用户名. 如果把database看作是一个仓库,仓库很多房间(schema),一个schema代表一个房间,table可以看作是每个房间中的储物柜,user是每个sch