SlideShare ist ein Scribd-Unternehmen logo
1 von 28
Downloaden Sie, um offline zu lesen
ORDER BY column_name
The Relational Database as Pervasive Cultural Form



Bernhard Rieder
University of Amsterdam
Media Studies
Starting Point

Despite their omnipresence, both database technology and actual
databases are understudied.


Work in the humanities and social sciences:
- Sociological implementation studies (ERP, …)
- Historical work on companies and packages
- Conceptual work on software as medium
- Work on classification, lists, etc.
- Governmentality, techniques of government, surveillance,…


Next to a steady deluge of technical literature (computer science,
management, etc.).
An Approach Focused on Database Technology

Simondon (1958):
   - technical objects, like art, have meaning, not only use
   - technical rationality is not univocal


Technology is thinking and speaking in the medium of function.


Just because we know how something works, does not mean that we
know what it does. It needs to be interpreted.


Part One: Core Features of the Relational Database Model
Part Two: Relational Database Modeling
Part Three: A Pervasive Cultural Form
Preliminary Definitions

Database model: method of data organization a DBMS implements
   => hierarchical, network, relational, object -oriented, graph,….


DBMS: database management system
   => IBM DB2, Oracle DB, mySQL, PostgreSQL, MongoDB, neo4j, …


Data model: the conceptual (semantic) model for a specific database
   => entity-relationship model, database schema, …


Database: concrete set of organized data stored in a DBMS
   => healthcare, client database, storage backend for web platform, etc.
Database Models

# Prehistory: File Management Systems, Report Generators


# Navigational approach (record-at-a-time):
    - Hierarchical model (1960s, example: IBM IMS)
        Modern equivalent: XML, some noSQL
    - Network model (1960s, example: GE IDS)
        Modern equivalent: XML (with key/ keyref), graph databases


# Declarative approach (set-at-a-time):
    - Relational model (1970s, example: Oracle DB, IBM DB2)


# Others: Object-oriented, object-relational, noSQL, graph, etc.
Part One: Core Features of the Relational Database Model

Universality principle: every mature database model can
accommodate every conceivable data model. But how?


Differentiation is introduced through variation in local requirements:
domain fit, end user profile, ease-of-use, performance, cost, integrity, maturity,
support, compatibility, interoperability, human resource availability, etc.


1) A simple and universal data structure: the relation
2) Data independence
3) Logical declaration instead of procedural navigation
4) A different form of reasoning about DBMS
1) A Simple and Universal Structure: the Relation

Basis: adaptation of relational algebra (first-order logic) to databases.


A relation is a set of rows (tuples) with the same columns (attributes)
and types (domains).


"[R]elation is basically just a mathematical
term for table." (Date 2004)


Everything is stored in tables; query results are tables as well .


Complex data models are created by connecting tables via primary key
/ foreign key relationships.
Workshop.sql: Data Model (EER Diagram 1)
Workshop.xml

XML (hierarchical model)
different concepts and syntax
for data modeling.


XML does not require/favor
"homogeneous atomism".


"Physical" location matters.
2) Data Independence

"Future users of large data banks must be protected from having to know how the
data is organized in the machine." (Codd 1970)


(Physical) data independence means that the logical structure of data
is decoupled from its physical structure in storage. Users interact with
the logical structure only, "machine questions" are blackboxed.


Relationships between data entities (JOIN) are no longer handled by
memory pointers but through integration at runtime (primary/foreign
key relationships or queries).
3) Logical Declaration Instead of Procedural Navigation

"[T]here is also a large class of users who, while they are not computer specialists,
would be willing to learn to interact with a computer in a reasonably high -level, non-
procedural query language. Examples of such users are accountants, engineers,
architects, and urban planners. It is for this class of users that SEQUEL is intended. "
(Chamberlin & Boyce 1974)


All interactions with data are based on logical declaration and not
algorithmic (procedural) navigation.


Retrieving data as asking a question to an "oracle" rather than creating
a pathway to a storage location.


SQL becomes "intergalactic data-speak" (Stonebraker 1993).
Workshop.xml

SQL statement:
SELECT * FROM organizers WHERE
affiliation="Middlesex Uni"


Navigate by:
- semantic paths
- structural paths
    (children, siblings,…)
4) A different form of reasoning about DBMS

Mathematical elegance and simplicity vs. engineering pragmatism.


Logic is power beyond rhetoric.


A mathematical way of guaranteeing integrity and consistency in cases
of data modification, simultaneity, conceptual change, etc.
   => make DBMS design amendable to mechanization and proof
   => commitment to a method, not an ontological account!


A shift in technology and requirements
   => hardware performance rises, cost decreases
   => increasing bureaucratic complexity (data model and use)
Conclusions for Part One

From the 1980s on, the relation model becomes dominant.


Simplicity, uniformity, and integrity of the relational model allows for it
to deal with higher organizational complexity. It moves technological
expression much closer to other management techniques and practices.


SQL does not become an end-user language but its universality allows
for the emergence of new professions in between system programmer
and management: the database *admin, analyst, modeler, …+.


Standardization is pervasive and significant:
    - technical: interoperability, a new market for analytics, etc .
    - cognitive: mobility of skills, techniques, practices, mindsets, …
Part Two: Relational Database Modeling

The relational approach is not only a model for designing DBMS, but
also a set of concepts and methods for creating data models.


Modeling, formalization: "capturing" the real world in a data model.


Relational model is "semantically impoverished" (Stonebraker 1993)
because there are only relations, difficult e.g. to model classes.
Example: difficult to model a tree, easy to derive a hierarchy from data.


A complex combination of decomposition and composition that
emphasizes "conceptual atomism".
Creating a Data Model

The relational model is associated
with methods, strategies and best
practices for data modeling.


The relational model only shines if
atomization is fully realized.


Two elements of the formalization
process:
    - conceptual modeling
    - normalization



                                      (Conolly et al. 1996)
Entity-Relationship Modeling

Creating a "conceptual model" of the real environment. (Chen 1976)
Workshop.sql: Enhanced Entity-Relationship Diagram 1
Workshop.sql: Enhanced Entity-Relationship Diagram 2
Normalization

Some basics:
- No duplicates
- Record (row) order unimportant
- Attribute (column) order unimportant (left to right).
- All attribute values are atomic


Additional "normal forms" proceed by specific trials.
Remove vulnerability to update anomalies, etc.


Conceptual atomism: there are irreducible objects of the same kind.
Composition

Composition (of "atoms") always happens through data in the
relations themselves (integration at runtime). We can distinguish two
forms:


- by modeling (primary / foreign key, connecting tables, etc.)
- by query (e.g. data range)


Orderings are either modeled in data or derived from data. Both are
layers.


Normalization reduces expressive power on the level of the unit and
extends expressive power on the level of composition.
Composition by SQL Query

Normalization shifts expressive power to the query.


SELECT * FROM table_name WHERE condition
                             ORDER BY column_name
* = columns (e.g. name), counting, math functions, etc .


Any relational database is already a full-fledged analytics package.


This is the "intelligence" of the relational model, a model of knowing.
Conclusions for Part Two

The relational model is connected to a set of standardized techniques,
methods, and practices.


Relational DBMS are boundary objects (Star & Griesemer 1989) and
the relational model creates trading zones (Galison 1997) between
organization, departments, individuals, etc.


Conceptual and methodological atomism implies a movement of
purification that enhances not only coherence and integrity, but also
"calculative agency" (Callon & Muniesa 2005).
Part Three: A Pervasive Cultural Form

What kind of cultural form?


A three step argument:
   - A tool/instrument for cognition
   - A calculative device
   - A mechanism for governance
A Cognitive Tool

Goody (1977) analyzes the list as "a special kind of lever on 'reality'", a
cognitive technique that has two principal properties. By arranging
words visually in space:
    - it allows to manipulate, order, reorder, classify, etc.
    - it decontextualizes, reduces complexity, eliminates "frames of
    reference", etc.


Two ways in which the relational model goes further:
    - software introduces a different performativity
    - calculative agency is significantly extended
Calculative Agency

DBMS make culture "calculable". The calculative capacities provided
by the relational model are particularly powerful.
Calculation must be understood in a wider sense: commensuration
(Espeland & Stevens 1998), standardization, quantification, embedding
in relational algebra, etc.


"Calculative agency will be all the more powerful when it is able to: a) establish a
long, yet finite list of diverse entities; b) allow rich and varied relations between the
entities thus selected, so that the space of possible classifications and
reclassifications is largely open; c) formalize procedures and algorithms likely to
multiply the possible hierarchies and classifications between these entities. As this
calculative power depends on the equipments that agencies can rely upon, we can
easily understand why it is unevenly distributed among them." ( Callon & Muniesa
2005)
A Technique for Governing

This extension of calculative agency encounters a larger shifts:
    - the rise of network economies
    - the success of (neo)liberal techniques of governing
    - the change in management techniques


Rosabeth Moss Kanter, "When Giants Learn to Dance", 1989


DBMS allow organizations to "support people's mobility without
relaxing monitoring." (Boltanski & Chiapello 1996)


The relational model is the perfect ally for " knowing capitalism"
(Thrift 2005) and "liquid modernity" (Bauman 2000).
Conclusions

# The relation model purifies and makes calculable
# The relational model changes who defines, closes the rift between
management and IT, "demediation" of control?
# The relational model plays an important role in standardization of
organizational processes.
# Takes part in reconfiguring the social.

Weitere ähnliche Inhalte

Was ist angesagt?

Tweets are Not Created Equal. Intersecting Devices in the 1% Sample
Tweets are Not Created Equal. Intersecting Devices in the 1% SampleTweets are Not Created Equal. Intersecting Devices in the 1% Sample
Tweets are Not Created Equal. Intersecting Devices in the 1% SampleBernhard Rieder
 
Interactive visualization and exploration of network data with gephi
Interactive visualization and exploration of network data with gephiInteractive visualization and exploration of network data with gephi
Interactive visualization and exploration of network data with gephiBernhard Rieder
 
Giovanni Maria Sacco
Giovanni Maria SaccoGiovanni Maria Sacco
Giovanni Maria Saccoguest66dc5f
 
Big Data Analytics : A Social Network Approach
Big Data Analytics : A Social Network ApproachBig Data Analytics : A Social Network Approach
Big Data Analytics : A Social Network ApproachAndry Alamsyah
 
Tile-based Navigation & Analytics-White Paper
Tile-based Navigation & Analytics-White PaperTile-based Navigation & Analytics-White Paper
Tile-based Navigation & Analytics-White PaperAxis Technology, LLC
 
We b 20181212 v2
We b 20181212 v2We b 20181212 v2
We b 20181212 v2ISSIP
 
Perceptions of Syrian refugees and data experts on relocation algorithm
Perceptions of Syrian refugees and data experts on relocation algorithmPerceptions of Syrian refugees and data experts on relocation algorithm
Perceptions of Syrian refugees and data experts on relocation algorithmDataLab - Taltech
 
Data visualization in a Nutshell
Data visualization in a NutshellData visualization in a Nutshell
Data visualization in a NutshellWingChan46
 
Semantic Interoperability & Information Brokering in Global Information Systems
Semantic Interoperability & Information Brokering in Global Information SystemsSemantic Interoperability & Information Brokering in Global Information Systems
Semantic Interoperability & Information Brokering in Global Information SystemsAmit Sheth
 
"I don't trust AI": the role of explainability in responsible AI
"I don't trust AI": the role of explainability in responsible AI"I don't trust AI": the role of explainability in responsible AI
"I don't trust AI": the role of explainability in responsible AIErika Agostinelli
 
The human face of AI: how collective and augmented intelligence can help sol...
The human face of AI:  how collective and augmented intelligence can help sol...The human face of AI:  how collective and augmented intelligence can help sol...
The human face of AI: how collective and augmented intelligence can help sol...Elena Simperl
 
Innovation Ecosystems at EBRF 2010, Nokia, Finland
Innovation Ecosystems at EBRF 2010, Nokia, FinlandInnovation Ecosystems at EBRF 2010, Nokia, Finland
Innovation Ecosystems at EBRF 2010, Nokia, FinlandJukka Huhtamäki
 
Platform Capitalism and the New Value Economy in the Academy
Platform Capitalism and the New Value Economy in the Academy Platform Capitalism and the New Value Economy in the Academy
Platform Capitalism and the New Value Economy in the Academy Mark Carrigan
 
Big data visualization
Big data visualizationBig data visualization
Big data visualizationAnurag Gupta
 
Financial Cartography at Bogazici University
Financial Cartography at Bogazici UniversityFinancial Cartography at Bogazici University
Financial Cartography at Bogazici UniversityKimmo Soramaki
 
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...Elena Simperl
 
CS6010 Social Network Analysis Unit IV
CS6010 Social Network Analysis Unit IVCS6010 Social Network Analysis Unit IV
CS6010 Social Network Analysis Unit IVpkaviya
 
The story of Data Stories
The story of Data StoriesThe story of Data Stories
The story of Data StoriesElena Simperl
 

Was ist angesagt? (20)

Tweets are Not Created Equal. Intersecting Devices in the 1% Sample
Tweets are Not Created Equal. Intersecting Devices in the 1% SampleTweets are Not Created Equal. Intersecting Devices in the 1% Sample
Tweets are Not Created Equal. Intersecting Devices in the 1% Sample
 
Interactive visualization and exploration of network data with gephi
Interactive visualization and exploration of network data with gephiInteractive visualization and exploration of network data with gephi
Interactive visualization and exploration of network data with gephi
 
Giovanni Maria Sacco
Giovanni Maria SaccoGiovanni Maria Sacco
Giovanni Maria Sacco
 
Q046049397
Q046049397Q046049397
Q046049397
 
Big Data Analytics : A Social Network Approach
Big Data Analytics : A Social Network ApproachBig Data Analytics : A Social Network Approach
Big Data Analytics : A Social Network Approach
 
Tile-based Navigation & Analytics-White Paper
Tile-based Navigation & Analytics-White PaperTile-based Navigation & Analytics-White Paper
Tile-based Navigation & Analytics-White Paper
 
We b 20181212 v2
We b 20181212 v2We b 20181212 v2
We b 20181212 v2
 
Perceptions of Syrian refugees and data experts on relocation algorithm
Perceptions of Syrian refugees and data experts on relocation algorithmPerceptions of Syrian refugees and data experts on relocation algorithm
Perceptions of Syrian refugees and data experts on relocation algorithm
 
Data visualization in a Nutshell
Data visualization in a NutshellData visualization in a Nutshell
Data visualization in a Nutshell
 
Semantic Interoperability & Information Brokering in Global Information Systems
Semantic Interoperability & Information Brokering in Global Information SystemsSemantic Interoperability & Information Brokering in Global Information Systems
Semantic Interoperability & Information Brokering in Global Information Systems
 
"I don't trust AI": the role of explainability in responsible AI
"I don't trust AI": the role of explainability in responsible AI"I don't trust AI": the role of explainability in responsible AI
"I don't trust AI": the role of explainability in responsible AI
 
The human face of AI: how collective and augmented intelligence can help sol...
The human face of AI:  how collective and augmented intelligence can help sol...The human face of AI:  how collective and augmented intelligence can help sol...
The human face of AI: how collective and augmented intelligence can help sol...
 
Innovation Ecosystems at EBRF 2010, Nokia, Finland
Innovation Ecosystems at EBRF 2010, Nokia, FinlandInnovation Ecosystems at EBRF 2010, Nokia, Finland
Innovation Ecosystems at EBRF 2010, Nokia, Finland
 
Platform Capitalism and the New Value Economy in the Academy
Platform Capitalism and the New Value Economy in the Academy Platform Capitalism and the New Value Economy in the Academy
Platform Capitalism and the New Value Economy in the Academy
 
Big data visualization
Big data visualizationBig data visualization
Big data visualization
 
Financial Cartography at Bogazici University
Financial Cartography at Bogazici UniversityFinancial Cartography at Bogazici University
Financial Cartography at Bogazici University
 
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...
One does not simply crowdsource the Semantic Web: 10 years with people, URIs,...
 
Code Driven Law?
Code Driven Law?Code Driven Law?
Code Driven Law?
 
CS6010 Social Network Analysis Unit IV
CS6010 Social Network Analysis Unit IVCS6010 Social Network Analysis Unit IV
CS6010 Social Network Analysis Unit IV
 
The story of Data Stories
The story of Data StoriesThe story of Data Stories
The story of Data Stories
 

Ähnlich wie ORDER BY column_name: The Relational Database as Pervasive Cultural Form

MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...
MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...
MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...Aravind NC
 
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdfchapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdfMisganawAbeje1
 
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYUSING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYcseij
 
Database overview
Database overviewDatabase overview
Database overviewSayem Khan
 
Data Structure the Basic Structure for Programming
Data Structure the Basic Structure for ProgrammingData Structure the Basic Structure for Programming
Data Structure the Basic Structure for Programmingpaperpublications3
 
Relational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelRelational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelBecki Roy
 
Relational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelRelational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelLorri Bynes
 
Chapter – 2 Data Models.pdf
Chapter – 2 Data Models.pdfChapter – 2 Data Models.pdf
Chapter – 2 Data Models.pdfTamiratDejene1
 
Part2- The Atomic Information Resource
Part2- The Atomic Information ResourcePart2- The Atomic Information Resource
Part2- The Atomic Information ResourceJEAN-MICHEL LETENNIER
 
Third AssignmentDescribe in 100 – 200 words an application with .docx
Third AssignmentDescribe in 100 – 200 words an application with .docxThird AssignmentDescribe in 100 – 200 words an application with .docx
Third AssignmentDescribe in 100 – 200 words an application with .docxrandymartin91030
 
Dbms Lec Uog 02
Dbms Lec Uog 02Dbms Lec Uog 02
Dbms Lec Uog 02smelltulip
 
Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfrsujeet169
 
Data and Computation Interoperability in Internet Services
Data and Computation Interoperability in Internet ServicesData and Computation Interoperability in Internet Services
Data and Computation Interoperability in Internet ServicesSergey Boldyrev
 

Ähnlich wie ORDER BY column_name: The Relational Database as Pervasive Cultural Form (20)

MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...
MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...
MC0083 – Object Oriented Analysis &. Design using UML - Master of Computer Sc...
 
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdfchapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
chapter 2-DATABASE SYSTEM CONCEPTS AND architecture [Autosaved].pdf
 
Data models
Data modelsData models
Data models
 
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEYUSING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
USING ONTOLOGIES TO OVERCOMING DRAWBACKS OF DATABASES AND VICE VERSA: A SURVEY
 
Database overview
Database overviewDatabase overview
Database overview
 
Data Structure the Basic Structure for Programming
Data Structure the Basic Structure for ProgrammingData Structure the Basic Structure for Programming
Data Structure the Basic Structure for Programming
 
ITB - UNIT 3.pdf
ITB - UNIT 3.pdfITB - UNIT 3.pdf
ITB - UNIT 3.pdf
 
Harsh
HarshHarsh
Harsh
 
Relational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelRelational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data Model
 
Relational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data ModelRelational Data Models Versus No Sql Data Model
Relational Data Models Versus No Sql Data Model
 
DBMS topic in PU
DBMS topic in PUDBMS topic in PU
DBMS topic in PU
 
Chapter – 2 Data Models.pdf
Chapter – 2 Data Models.pdfChapter – 2 Data Models.pdf
Chapter – 2 Data Models.pdf
 
Object oriented analysis and design unit- iv
Object oriented analysis and design unit- ivObject oriented analysis and design unit- iv
Object oriented analysis and design unit- iv
 
Data Modeling.docx
Data Modeling.docxData Modeling.docx
Data Modeling.docx
 
Dbms slide share.pptx
Dbms slide share.pptxDbms slide share.pptx
Dbms slide share.pptx
 
Part2- The Atomic Information Resource
Part2- The Atomic Information ResourcePart2- The Atomic Information Resource
Part2- The Atomic Information Resource
 
Third AssignmentDescribe in 100 – 200 words an application with .docx
Third AssignmentDescribe in 100 – 200 words an application with .docxThird AssignmentDescribe in 100 – 200 words an application with .docx
Third AssignmentDescribe in 100 – 200 words an application with .docx
 
Dbms Lec Uog 02
Dbms Lec Uog 02Dbms Lec Uog 02
Dbms Lec Uog 02
 
Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdf
 
Data and Computation Interoperability in Internet Services
Data and Computation Interoperability in Internet ServicesData and Computation Interoperability in Internet Services
Data and Computation Interoperability in Internet Services
 

Kürzlich hochgeladen

Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...raviapr7
 
How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17Celine George
 
HED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfHED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfMohonDas
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17Celine George
 
Presentation on the Basics of Writing. Writing a Paragraph
Presentation on the Basics of Writing. Writing a ParagraphPresentation on the Basics of Writing. Writing a Paragraph
Presentation on the Basics of Writing. Writing a ParagraphNetziValdelomar1
 
Prescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxPrescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxraviapr7
 
The Singapore Teaching Practice document
The Singapore Teaching Practice documentThe Singapore Teaching Practice document
The Singapore Teaching Practice documentXsasf Sfdfasd
 
M-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxM-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxDr. Santhosh Kumar. N
 
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxPractical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxKatherine Villaluna
 
Patterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxPatterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxMYDA ANGELICA SUAN
 
Diploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfDiploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfMohonDas
 
General views of Histopathology and step
General views of Histopathology and stepGeneral views of Histopathology and step
General views of Histopathology and stepobaje godwin sunday
 
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdf
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdfP4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdf
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdfYu Kanazawa / Osaka University
 
Quality Assurance_GOOD LABORATORY PRACTICE
Quality Assurance_GOOD LABORATORY PRACTICEQuality Assurance_GOOD LABORATORY PRACTICE
Quality Assurance_GOOD LABORATORY PRACTICESayali Powar
 
Benefits & Challenges of Inclusive Education
Benefits & Challenges of Inclusive EducationBenefits & Challenges of Inclusive Education
Benefits & Challenges of Inclusive EducationMJDuyan
 
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxAUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxiammrhaywood
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.EnglishCEIPdeSigeiro
 
CapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapitolTechU
 

Kürzlich hochgeladen (20)

Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...Patient Counselling. Definition of patient counseling; steps involved in pati...
Patient Counselling. Definition of patient counseling; steps involved in pati...
 
How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17How to Add a many2many Relational Field in Odoo 17
How to Add a many2many Relational Field in Odoo 17
 
HED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdfHED Office Sohayok Exam Question Solution 2023.pdf
HED Office Sohayok Exam Question Solution 2023.pdf
 
How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17How to Make a Field read-only in Odoo 17
How to Make a Field read-only in Odoo 17
 
Presentation on the Basics of Writing. Writing a Paragraph
Presentation on the Basics of Writing. Writing a ParagraphPresentation on the Basics of Writing. Writing a Paragraph
Presentation on the Basics of Writing. Writing a Paragraph
 
Prescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptxPrescribed medication order and communication skills.pptx
Prescribed medication order and communication skills.pptx
 
The Singapore Teaching Practice document
The Singapore Teaching Practice documentThe Singapore Teaching Practice document
The Singapore Teaching Practice document
 
M-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptxM-2- General Reactions of amino acids.pptx
M-2- General Reactions of amino acids.pptx
 
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptxPractical Research 1: Lesson 8 Writing the Thesis Statement.pptx
Practical Research 1: Lesson 8 Writing the Thesis Statement.pptx
 
Patterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptxPatterns of Written Texts Across Disciplines.pptx
Patterns of Written Texts Across Disciplines.pptx
 
Diploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdfDiploma in Nursing Admission Test Question Solution 2023.pdf
Diploma in Nursing Admission Test Question Solution 2023.pdf
 
General views of Histopathology and step
General views of Histopathology and stepGeneral views of Histopathology and step
General views of Histopathology and step
 
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdf
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdfP4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdf
P4C x ELT = P4ELT: Its Theoretical Background (Kanazawa, 2024 March).pdf
 
Quality Assurance_GOOD LABORATORY PRACTICE
Quality Assurance_GOOD LABORATORY PRACTICEQuality Assurance_GOOD LABORATORY PRACTICE
Quality Assurance_GOOD LABORATORY PRACTICE
 
Benefits & Challenges of Inclusive Education
Benefits & Challenges of Inclusive EducationBenefits & Challenges of Inclusive Education
Benefits & Challenges of Inclusive Education
 
Finals of Kant get Marx 2.0 : a general politics quiz
Finals of Kant get Marx 2.0 : a general politics quizFinals of Kant get Marx 2.0 : a general politics quiz
Finals of Kant get Marx 2.0 : a general politics quiz
 
Prelims of Kant get Marx 2.0: a general politics quiz
Prelims of Kant get Marx 2.0: a general politics quizPrelims of Kant get Marx 2.0: a general politics quiz
Prelims of Kant get Marx 2.0: a general politics quiz
 
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptxAUDIENCE THEORY -- FANDOM -- JENKINS.pptx
AUDIENCE THEORY -- FANDOM -- JENKINS.pptx
 
Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.Easter in the USA presentation by Chloe.
Easter in the USA presentation by Chloe.
 
CapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptxCapTechU Doctoral Presentation -March 2024 slides.pptx
CapTechU Doctoral Presentation -March 2024 slides.pptx
 

ORDER BY column_name: The Relational Database as Pervasive Cultural Form

  • 1. ORDER BY column_name The Relational Database as Pervasive Cultural Form Bernhard Rieder University of Amsterdam Media Studies
  • 2. Starting Point Despite their omnipresence, both database technology and actual databases are understudied. Work in the humanities and social sciences: - Sociological implementation studies (ERP, …) - Historical work on companies and packages - Conceptual work on software as medium - Work on classification, lists, etc. - Governmentality, techniques of government, surveillance,… Next to a steady deluge of technical literature (computer science, management, etc.).
  • 3. An Approach Focused on Database Technology Simondon (1958): - technical objects, like art, have meaning, not only use - technical rationality is not univocal Technology is thinking and speaking in the medium of function. Just because we know how something works, does not mean that we know what it does. It needs to be interpreted. Part One: Core Features of the Relational Database Model Part Two: Relational Database Modeling Part Three: A Pervasive Cultural Form
  • 4. Preliminary Definitions Database model: method of data organization a DBMS implements => hierarchical, network, relational, object -oriented, graph,…. DBMS: database management system => IBM DB2, Oracle DB, mySQL, PostgreSQL, MongoDB, neo4j, … Data model: the conceptual (semantic) model for a specific database => entity-relationship model, database schema, … Database: concrete set of organized data stored in a DBMS => healthcare, client database, storage backend for web platform, etc.
  • 5. Database Models # Prehistory: File Management Systems, Report Generators # Navigational approach (record-at-a-time): - Hierarchical model (1960s, example: IBM IMS) Modern equivalent: XML, some noSQL - Network model (1960s, example: GE IDS) Modern equivalent: XML (with key/ keyref), graph databases # Declarative approach (set-at-a-time): - Relational model (1970s, example: Oracle DB, IBM DB2) # Others: Object-oriented, object-relational, noSQL, graph, etc.
  • 6. Part One: Core Features of the Relational Database Model Universality principle: every mature database model can accommodate every conceivable data model. But how? Differentiation is introduced through variation in local requirements: domain fit, end user profile, ease-of-use, performance, cost, integrity, maturity, support, compatibility, interoperability, human resource availability, etc. 1) A simple and universal data structure: the relation 2) Data independence 3) Logical declaration instead of procedural navigation 4) A different form of reasoning about DBMS
  • 7. 1) A Simple and Universal Structure: the Relation Basis: adaptation of relational algebra (first-order logic) to databases. A relation is a set of rows (tuples) with the same columns (attributes) and types (domains). "[R]elation is basically just a mathematical term for table." (Date 2004) Everything is stored in tables; query results are tables as well . Complex data models are created by connecting tables via primary key / foreign key relationships.
  • 8. Workshop.sql: Data Model (EER Diagram 1)
  • 9. Workshop.xml XML (hierarchical model) different concepts and syntax for data modeling. XML does not require/favor "homogeneous atomism". "Physical" location matters.
  • 10. 2) Data Independence "Future users of large data banks must be protected from having to know how the data is organized in the machine." (Codd 1970) (Physical) data independence means that the logical structure of data is decoupled from its physical structure in storage. Users interact with the logical structure only, "machine questions" are blackboxed. Relationships between data entities (JOIN) are no longer handled by memory pointers but through integration at runtime (primary/foreign key relationships or queries).
  • 11. 3) Logical Declaration Instead of Procedural Navigation "[T]here is also a large class of users who, while they are not computer specialists, would be willing to learn to interact with a computer in a reasonably high -level, non- procedural query language. Examples of such users are accountants, engineers, architects, and urban planners. It is for this class of users that SEQUEL is intended. " (Chamberlin & Boyce 1974) All interactions with data are based on logical declaration and not algorithmic (procedural) navigation. Retrieving data as asking a question to an "oracle" rather than creating a pathway to a storage location. SQL becomes "intergalactic data-speak" (Stonebraker 1993).
  • 12. Workshop.xml SQL statement: SELECT * FROM organizers WHERE affiliation="Middlesex Uni" Navigate by: - semantic paths - structural paths (children, siblings,…)
  • 13. 4) A different form of reasoning about DBMS Mathematical elegance and simplicity vs. engineering pragmatism. Logic is power beyond rhetoric. A mathematical way of guaranteeing integrity and consistency in cases of data modification, simultaneity, conceptual change, etc. => make DBMS design amendable to mechanization and proof => commitment to a method, not an ontological account! A shift in technology and requirements => hardware performance rises, cost decreases => increasing bureaucratic complexity (data model and use)
  • 14. Conclusions for Part One From the 1980s on, the relation model becomes dominant. Simplicity, uniformity, and integrity of the relational model allows for it to deal with higher organizational complexity. It moves technological expression much closer to other management techniques and practices. SQL does not become an end-user language but its universality allows for the emergence of new professions in between system programmer and management: the database *admin, analyst, modeler, …+. Standardization is pervasive and significant: - technical: interoperability, a new market for analytics, etc . - cognitive: mobility of skills, techniques, practices, mindsets, …
  • 15. Part Two: Relational Database Modeling The relational approach is not only a model for designing DBMS, but also a set of concepts and methods for creating data models. Modeling, formalization: "capturing" the real world in a data model. Relational model is "semantically impoverished" (Stonebraker 1993) because there are only relations, difficult e.g. to model classes. Example: difficult to model a tree, easy to derive a hierarchy from data. A complex combination of decomposition and composition that emphasizes "conceptual atomism".
  • 16. Creating a Data Model The relational model is associated with methods, strategies and best practices for data modeling. The relational model only shines if atomization is fully realized. Two elements of the formalization process: - conceptual modeling - normalization (Conolly et al. 1996)
  • 17. Entity-Relationship Modeling Creating a "conceptual model" of the real environment. (Chen 1976)
  • 20. Normalization Some basics: - No duplicates - Record (row) order unimportant - Attribute (column) order unimportant (left to right). - All attribute values are atomic Additional "normal forms" proceed by specific trials. Remove vulnerability to update anomalies, etc. Conceptual atomism: there are irreducible objects of the same kind.
  • 21. Composition Composition (of "atoms") always happens through data in the relations themselves (integration at runtime). We can distinguish two forms: - by modeling (primary / foreign key, connecting tables, etc.) - by query (e.g. data range) Orderings are either modeled in data or derived from data. Both are layers. Normalization reduces expressive power on the level of the unit and extends expressive power on the level of composition.
  • 22. Composition by SQL Query Normalization shifts expressive power to the query. SELECT * FROM table_name WHERE condition ORDER BY column_name * = columns (e.g. name), counting, math functions, etc . Any relational database is already a full-fledged analytics package. This is the "intelligence" of the relational model, a model of knowing.
  • 23. Conclusions for Part Two The relational model is connected to a set of standardized techniques, methods, and practices. Relational DBMS are boundary objects (Star & Griesemer 1989) and the relational model creates trading zones (Galison 1997) between organization, departments, individuals, etc. Conceptual and methodological atomism implies a movement of purification that enhances not only coherence and integrity, but also "calculative agency" (Callon & Muniesa 2005).
  • 24. Part Three: A Pervasive Cultural Form What kind of cultural form? A three step argument: - A tool/instrument for cognition - A calculative device - A mechanism for governance
  • 25. A Cognitive Tool Goody (1977) analyzes the list as "a special kind of lever on 'reality'", a cognitive technique that has two principal properties. By arranging words visually in space: - it allows to manipulate, order, reorder, classify, etc. - it decontextualizes, reduces complexity, eliminates "frames of reference", etc. Two ways in which the relational model goes further: - software introduces a different performativity - calculative agency is significantly extended
  • 26. Calculative Agency DBMS make culture "calculable". The calculative capacities provided by the relational model are particularly powerful. Calculation must be understood in a wider sense: commensuration (Espeland & Stevens 1998), standardization, quantification, embedding in relational algebra, etc. "Calculative agency will be all the more powerful when it is able to: a) establish a long, yet finite list of diverse entities; b) allow rich and varied relations between the entities thus selected, so that the space of possible classifications and reclassifications is largely open; c) formalize procedures and algorithms likely to multiply the possible hierarchies and classifications between these entities. As this calculative power depends on the equipments that agencies can rely upon, we can easily understand why it is unevenly distributed among them." ( Callon & Muniesa 2005)
  • 27. A Technique for Governing This extension of calculative agency encounters a larger shifts: - the rise of network economies - the success of (neo)liberal techniques of governing - the change in management techniques Rosabeth Moss Kanter, "When Giants Learn to Dance", 1989 DBMS allow organizations to "support people's mobility without relaxing monitoring." (Boltanski & Chiapello 1996) The relational model is the perfect ally for " knowing capitalism" (Thrift 2005) and "liquid modernity" (Bauman 2000).
  • 28. Conclusions # The relation model purifies and makes calculable # The relational model changes who defines, closes the rift between management and IT, "demediation" of control? # The relational model plays an important role in standardization of organizational processes. # Takes part in reconfiguring the social.

Hinweis der Redaktion

  1. We can "stutter" in technology.
  2. no lists, bags, links, sets, arrays, maps, trees, etc.
  3. Could put many other things, timetable, etc.
  4. Physical location matters: <title> is a child of <workshop> because it is placed in this position in the file.