Skip to main content

2019 | OriginalPaper | Buchkapitel

9. Improve the Database with Advanced Oracle Schema Objects

verfasst von : Jon Heller

Erschienen in: Pro Oracle SQL Development

Verlag: Apress

Aktivieren Sie unsere intelligente Suche, um passende Fachinhalte oder Patente zu finden.

search-config
loading …

Abstract

So far this book has used pre-built objects but now it’s time to start making our own. This book assumes you are familiar with basic Data Definition Language commands like CREATE TABLE. This chapter describes advanced features of Oracle schema objects and the advanced DDL commands to create and maintain them.

Sie haben noch keine Lizenz? Dann Informieren Sie sich jetzt über unsere Produkte:

Springer Professional "Wirtschaft+Technik"

Online-Abonnement

Mit Springer Professional "Wirtschaft+Technik" erhalten Sie Zugriff auf:

  • über 102.000 Bücher
  • über 537 Zeitschriften

aus folgenden Fachgebieten:

  • Automobil + Motoren
  • Bauwesen + Immobilien
  • Business IT + Informatik
  • Elektrotechnik + Elektronik
  • Energie + Nachhaltigkeit
  • Finance + Banking
  • Management + Führung
  • Marketing + Vertrieb
  • Maschinenbau + Werkstoffe
  • Versicherung + Risiko

Jetzt Wissensvorsprung sichern!

Springer Professional "Technik"

Online-Abonnement

Mit Springer Professional "Technik" erhalten Sie Zugriff auf:

  • über 67.000 Bücher
  • über 390 Zeitschriften

aus folgenden Fachgebieten:

  • Automobil + Motoren
  • Bauwesen + Immobilien
  • Business IT + Informatik
  • Elektrotechnik + Elektronik
  • Energie + Nachhaltigkeit
  • Maschinenbau + Werkstoffe




 

Jetzt Wissensvorsprung sichern!

Springer Professional "Wirtschaft"

Online-Abonnement

Mit Springer Professional "Wirtschaft" erhalten Sie Zugriff auf:

  • über 67.000 Bücher
  • über 340 Zeitschriften

aus folgenden Fachgebieten:

  • Bauwesen + Immobilien
  • Business IT + Informatik
  • Finance + Banking
  • Management + Führung
  • Marketing + Vertrieb
  • Versicherung + Risiko




Jetzt Wissensvorsprung sichern!

Fußnoten
1
There are ALTER commands that affect object-relational code. But those exceptions are a reason why we should avoid object-relational technology. It’s a nightmare when altering code permanently breaks our data.
 
2
Adrian Billington’s excellent website describes how to use a preprocessor to generate a list of files in a directory: www.oracle-developer.net/display.php?id=513 .
 
4
Partition-wise joins work one partition at a time. Joining per partition instead of per table can significantly decrease the memory requirements and improve performance. But partition-wise joins only happen if the tables are partitioned the exact same way and the join uses the partition column. Most hash-partitioned tables are a mistake because programmers incorrectly think partition-wise joins happen with every join.
 
5
To make things even more confusing, Oracle has an unrelated CREATE SCHEMA command. The CREATE SCHEMA command does not create a user, the command is for creating multiple objects with one statement. This unusual command is useful for creating tables with circular dependencies.
 
Metadaten
Titel
Improve the Database with Advanced Oracle Schema Objects
verfasst von
Jon Heller
Copyright-Jahr
2019
Verlag
Apress
DOI
https://doi.org/10.1007/978-1-4842-4517-0_9