SlideShare a Scribd company logo
BLOQUE(COB,NOMBRE) SALON(COS,NOMBRE,BLOQUE_COB) ASIGNATURA(COA,NOMBRE,CREDITOS,HTI,AC,HP, SALON_COS, DOCENTE_COD, AREA_COAR ,PROGRAMA_COP) DOCENTE(COD,NOMBRE,FECHANACIMIENTO,PREGRADO,POSTGRADO,FECHAINGRESO) AREA(COAR,NOMBRE) PROGRAMA(COP,NOMBRE,FACULTAD_COF) FACULTAD(COF,NOMBRE) ASIGNATURA_HAS_PREREQUISITO(ASIGNATURA_COA,PREREQUISITO_COPR) PREREQUISITOS(COPR,NOMBREPRERE) 1626235114300 CREATE TABLE  "
AREA"
     ("
COAR"
 NUMBER NOT NULL ENABLE,  "
NOMBRE"
 CHAR(35) NOT NULL ENABLE,   CONSTRAINT "
AREA_PK"
 PRIMARY KEY ("
COAR"
) ENABLE    ) / CREATE TABLE  "
DOCENTE"
     ("
COD"
 NUMBER NOT NULL ENABLE,  "
NOMBRE"
 CHAR(60) NOT NULL ENABLE,  "
PREGRADO"
 CHAR(100) NOT NULL ENABLE,  "
POSTGRADO"
 CHAR(100) NOT NULL ENABLE,  "
FECHAINGRESO"
 CHAR(20) NOT NULL ENABLE,   CONSTRAINT "
DOCENTE_PK"
 PRIMARY KEY ("
COD"
) ENABLE    ) / CREATE TABLE  "
PROGRAMA"
     ("
COP"
 NUMBER NOT NULL ENABLE,  "
FACULTAD_COF"
 NUMBER,  "
NOMBRE"
 CHAR(60) NOT NULL ENABLE,   CONSTRAINT "
PROGRAMA_PK"
 PRIMARY KEY ("
COP"
) ENABLE,   CONSTRAINT "
PROGRAMA_FK"
 FOREIGN KEY ("
FACULTAD_COF"
)   REFERENCES  "
FACULTAD"
 ("
COF"
) ENABLE    ) / CREATE TABLE  "
SALON"
     ("
COS"
 NUMBER NOT NULL ENABLE,  "
NOMBRE"
 CHAR(60) NOT NULL ENABLE,  "
BLOQUE_COB"
 NUMBER,   CONSTRAINT "
SALON_PK"
 PRIMARY KEY ("
COS"
) ENABLE,   CONSTRAINT "
SALON_FK"
 FOREIGN KEY ("
BLOQUE_COB"
)   REFERENCES  "
BLOQUE"
 ("
COB"
) ENABLE    ) / CREATE TABLE  "
ASIGNATURA"
     ("
COA"
 NUMBER NOT NULL ENABLE,  "
DOCENTE_COD"
 NUMBER,  "
AREA_COAR"
 NUMBER,  "
PROGRAMA_COP"
 NUMBER,  "
SALON_COS"
 NUMBER,  "
NOMBRE"
 CHAR(30) NOT NULL ENABLE,  "
CREDITOS"
 CHAR(12) NOT NULL ENABLE,  "
HTI"
 CHAR(1) NOT NULL ENABLE,  "
AC"
 CHAR(1) NOT NULL ENABLE,  "
HP"
 CHAR(1) NOT NULL ENABLE,   CONSTRAINT "
ASIGNATURA_PK"
 PRIMARY KEY ("
COA"
) ENABLE,   CONSTRAINT "
ASIGNATURA_FK"
 FOREIGN KEY ("
DOCENTE_COD"
)   REFERENCES  "
DOCENTE"
 ("
COD"
) ENABLE,   CONSTRAINT "
DOCENTE_FK2"
 FOREIGN KEY ("
AREA_COAR"
)   REFERENCES  "
AREA"
 ("
COAR"
) ENABLE,   CONSTRAINT "
DOCENTE_FK3"
 FOREIGN KEY ("
PROGRAMA_COP"
)   REFERENCES  "
PROGRAMA"
 ("
COP"
) ENABLE,   CONSTRAINT "
DOCENTE_FK4"
 FOREIGN KEY ("
SALON_COS"
)   REFERENCES  "
SALON"
 ("
COS"
) ENABLE    ) / CREATE TABLE  "
PREREQUISITOS"
     ("
COPR"
 NUMBER NOT NULL ENABLE,  "
NOMBREPRERE"
 CHAR(30) NOT NULL ENABLE,   CONSTRAINT "
PREREQUISITOS_PK"
 PRIMARY KEY ("
COPR"
) ENABLE    ) / CREATE TABLE  "
ASIGPRE"
     ("
ASIGNATURA_COA"
 NUMBER,  "
PREREQUISITO_COPR"
 NUMBER,   CONSTRAINT "
ASIGPRE_FK"
 FOREIGN KEY ("
ASIGNATURA_COA"
)   REFERENCES  "
ASIGNATURA"
 ("
COA"
) ENABLE,   CONSTRAINT "
PREREQUISITOS_FK2"
 FOREIGN KEY ("
PREREQUISITO_COPR"
)   REFERENCES  "
PREREQUISITOS"
 ("
COPR"
) ENABLE    ) / CREATE TABLE  "
BLOQUE"
     ("
COB"
 NUMBER NOT NULL ENABLE,  "
NOMBRE"
 CHAR(20) NOT NULL ENABLE,   CONSTRAINT "
BLOQUE_PK"
 PRIMARY KEY ("
COB"
) ENABLE    ) / CREATE TABLE  "
FACULTAD"
     ("
COF"
 NUMBER NOT NULL ENABLE,  "
NOMBRE"
 CHAR(30) NOT NULL ENABLE,   CONSTRAINT "
FACULTAD_PK"
 PRIMARY KEY ("
COF"
) ENABLE    ) /
Tallerpractica
Tallerpractica
Tallerpractica
Tallerpractica
Tallerpractica

More Related Content

What's hot

Practice 1
Practice 1Practice 1
Practice 1
nonamela
 
[2019] 아직도 돈 주고 DB 쓰나요? for Developer
[2019] 아직도 돈 주고 DB 쓰나요? for Developer[2019] 아직도 돈 주고 DB 쓰나요? for Developer
[2019] 아직도 돈 주고 DB 쓰나요? for Developer
NHN FORWARD
 
Enumerable.js
Enumerable.jsEnumerable.js
Enumerable.js
Zoltan Ludanyi
 
Array imp of list
Array imp of listArray imp of list
Array imp of list
Elavarasi K
 
Types, Operators and Primitives
Types, Operators and PrimitivesTypes, Operators and Primitives
Types, Operators and Primitives
alexisabril
 
PHP in 2018 - Q4 - AFUP Limoges
PHP in 2018 - Q4 - AFUP LimogesPHP in 2018 - Q4 - AFUP Limoges
PHP in 2018 - Q4 - AFUP Limoges
✅ William Pinaud
 
Short intro to ES6 Features
Short intro to ES6 FeaturesShort intro to ES6 Features
Short intro to ES6 Features
Naing Lin Aung
 
Cpp tutorial
Cpp tutorialCpp tutorial
Cpp tutorial
Vikas Sharma
 
The Ring programming language version 1.5.2 book - Part 45 of 181
The Ring programming language version 1.5.2 book - Part 45 of 181The Ring programming language version 1.5.2 book - Part 45 of 181
The Ring programming language version 1.5.2 book - Part 45 of 181
Mahmoud Samir Fayed
 
Exploring slides
Exploring slidesExploring slides
Exploring slides
akaptur
 
As400 session or device error
As400   session or device errorAs400   session or device error
As400 session or device error
aminem_mp
 
Grokking TechTalk #16: Maybe functor in javascript
Grokking TechTalk #16: Maybe functor in javascriptGrokking TechTalk #16: Maybe functor in javascript
Grokking TechTalk #16: Maybe functor in javascript
Grokking VN
 
Visual Basic
Visual BasicVisual Basic
Visual Basic
Vj NiroSh
 
Codigos
CodigosCodigos
Codigos
Brian Joseff
 
Swift girls 5th_teaching_meeting20160829
Swift girls 5th_teaching_meeting20160829Swift girls 5th_teaching_meeting20160829
Swift girls 5th_teaching_meeting20160829
雅方 鄭
 
Laziness in Swift
Laziness in Swift Laziness in Swift
Laziness in Swift
SwiftWro
 
Introduction of ES2015
Introduction of ES2015Introduction of ES2015
Introduction of ES2015
Nakajima Shigeru
 
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPythonByterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
akaptur
 
Closures
ClosuresClosures
Closures
SV.CO
 

What's hot (19)

Practice 1
Practice 1Practice 1
Practice 1
 
[2019] 아직도 돈 주고 DB 쓰나요? for Developer
[2019] 아직도 돈 주고 DB 쓰나요? for Developer[2019] 아직도 돈 주고 DB 쓰나요? for Developer
[2019] 아직도 돈 주고 DB 쓰나요? for Developer
 
Enumerable.js
Enumerable.jsEnumerable.js
Enumerable.js
 
Array imp of list
Array imp of listArray imp of list
Array imp of list
 
Types, Operators and Primitives
Types, Operators and PrimitivesTypes, Operators and Primitives
Types, Operators and Primitives
 
PHP in 2018 - Q4 - AFUP Limoges
PHP in 2018 - Q4 - AFUP LimogesPHP in 2018 - Q4 - AFUP Limoges
PHP in 2018 - Q4 - AFUP Limoges
 
Short intro to ES6 Features
Short intro to ES6 FeaturesShort intro to ES6 Features
Short intro to ES6 Features
 
Cpp tutorial
Cpp tutorialCpp tutorial
Cpp tutorial
 
The Ring programming language version 1.5.2 book - Part 45 of 181
The Ring programming language version 1.5.2 book - Part 45 of 181The Ring programming language version 1.5.2 book - Part 45 of 181
The Ring programming language version 1.5.2 book - Part 45 of 181
 
Exploring slides
Exploring slidesExploring slides
Exploring slides
 
As400 session or device error
As400   session or device errorAs400   session or device error
As400 session or device error
 
Grokking TechTalk #16: Maybe functor in javascript
Grokking TechTalk #16: Maybe functor in javascriptGrokking TechTalk #16: Maybe functor in javascript
Grokking TechTalk #16: Maybe functor in javascript
 
Visual Basic
Visual BasicVisual Basic
Visual Basic
 
Codigos
CodigosCodigos
Codigos
 
Swift girls 5th_teaching_meeting20160829
Swift girls 5th_teaching_meeting20160829Swift girls 5th_teaching_meeting20160829
Swift girls 5th_teaching_meeting20160829
 
Laziness in Swift
Laziness in Swift Laziness in Swift
Laziness in Swift
 
Introduction of ES2015
Introduction of ES2015Introduction of ES2015
Introduction of ES2015
 
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPythonByterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
Byterun, a Python bytecode interpreter - Allison Kaptur at NYCPython
 
Closures
ClosuresClosures
Closures
 

Viewers also liked

Arkansas Minuteman Newspaper August 2009
Arkansas Minuteman Newspaper August 2009Arkansas Minuteman Newspaper August 2009
Arkansas Minuteman Newspaper August 2009
cheathscott
 
Tallerpractica
TallerpracticaTallerpractica
Tallerpractica
guest4b949be
 
GOR 10 Presentation
GOR 10 PresentationGOR 10 Presentation
GOR 10 Presentation
HS Heilbronn
 
DIY User Research Participant Recruiting
DIY User Research Participant RecruitingDIY User Research Participant Recruiting
DIY User Research Participant Recruiting
Erin Young
 
Five Ways to Save Time During Rapid Prorotyping
Five Ways to Save Time During Rapid ProrotypingFive Ways to Save Time During Rapid Prorotyping
Five Ways to Save Time During Rapid Prorotyping
Erin Young
 
It's a cynical world out there - Encouraging citizen engagement
It's a cynical world out there - Encouraging citizen engagementIt's a cynical world out there - Encouraging citizen engagement
It's a cynical world out there - Encouraging citizen engagement
.id - the population experts
 
Population growth in regional Australia
Population growth in regional AustraliaPopulation growth in regional Australia
Population growth in regional Australia
.id - the population experts
 
When & How to Hire a UX Designer
When & How to Hire a UX DesignerWhen & How to Hire a UX Designer
When & How to Hire a UX Designer
Erin Young
 
Telling the story of your community with demographics
Telling the story of your community with demographicsTelling the story of your community with demographics
Telling the story of your community with demographics
.id - the population experts
 
Knowing your customers - Local Government Managers Australia
Knowing your customers - Local Government Managers AustraliaKnowing your customers - Local Government Managers Australia
Knowing your customers - Local Government Managers Australia
.id - the population experts
 
Benchmarking performance in regional development
Benchmarking performance in regional developmentBenchmarking performance in regional development
Benchmarking performance in regional development
.id - the population experts
 
Move over baby boomers - it's not all about you!
Move over baby boomers - it's not all about you!Move over baby boomers - it's not all about you!
Move over baby boomers - it's not all about you!
.id - the population experts
 
Understanding your target community or market with demographics
Understanding your target community or market with demographicsUnderstanding your target community or market with demographics
Understanding your target community or market with demographics
.id - the population experts
 
Too much information not enought knowledge
Too much information not enought knowledgeToo much information not enought knowledge
Too much information not enought knowledge
.id - the population experts
 
Housing affordability - informing local government with some facts and figures
Housing affordability - informing local government with some facts and figuresHousing affordability - informing local government with some facts and figures
Housing affordability - informing local government with some facts and figures
.id - the population experts
 
Australia through the demographic lens
Australia through the demographic lensAustralia through the demographic lens
Australia through the demographic lens
.id - the population experts
 
How demographics helped Richmond Football club double its membership
How demographics helped Richmond Football club double its membership How demographics helped Richmond Football club double its membership
How demographics helped Richmond Football club double its membership
.id - the population experts
 

Viewers also liked (18)

Arkansas Minuteman Newspaper August 2009
Arkansas Minuteman Newspaper August 2009Arkansas Minuteman Newspaper August 2009
Arkansas Minuteman Newspaper August 2009
 
Tallerpractica
TallerpracticaTallerpractica
Tallerpractica
 
GOR 10 Presentation
GOR 10 PresentationGOR 10 Presentation
GOR 10 Presentation
 
DIY User Research Participant Recruiting
DIY User Research Participant RecruitingDIY User Research Participant Recruiting
DIY User Research Participant Recruiting
 
Five Ways to Save Time During Rapid Prorotyping
Five Ways to Save Time During Rapid ProrotypingFive Ways to Save Time During Rapid Prorotyping
Five Ways to Save Time During Rapid Prorotyping
 
It's a cynical world out there - Encouraging citizen engagement
It's a cynical world out there - Encouraging citizen engagementIt's a cynical world out there - Encouraging citizen engagement
It's a cynical world out there - Encouraging citizen engagement
 
Population growth in regional Australia
Population growth in regional AustraliaPopulation growth in regional Australia
Population growth in regional Australia
 
When & How to Hire a UX Designer
When & How to Hire a UX DesignerWhen & How to Hire a UX Designer
When & How to Hire a UX Designer
 
Web2.0b
Web2.0bWeb2.0b
Web2.0b
 
Telling the story of your community with demographics
Telling the story of your community with demographicsTelling the story of your community with demographics
Telling the story of your community with demographics
 
Knowing your customers - Local Government Managers Australia
Knowing your customers - Local Government Managers AustraliaKnowing your customers - Local Government Managers Australia
Knowing your customers - Local Government Managers Australia
 
Benchmarking performance in regional development
Benchmarking performance in regional developmentBenchmarking performance in regional development
Benchmarking performance in regional development
 
Move over baby boomers - it's not all about you!
Move over baby boomers - it's not all about you!Move over baby boomers - it's not all about you!
Move over baby boomers - it's not all about you!
 
Understanding your target community or market with demographics
Understanding your target community or market with demographicsUnderstanding your target community or market with demographics
Understanding your target community or market with demographics
 
Too much information not enought knowledge
Too much information not enought knowledgeToo much information not enought knowledge
Too much information not enought knowledge
 
Housing affordability - informing local government with some facts and figures
Housing affordability - informing local government with some facts and figuresHousing affordability - informing local government with some facts and figures
Housing affordability - informing local government with some facts and figures
 
Australia through the demographic lens
Australia through the demographic lensAustralia through the demographic lens
Australia through the demographic lens
 
How demographics helped Richmond Football club double its membership
How demographics helped Richmond Football club double its membership How demographics helped Richmond Football club double its membership
How demographics helped Richmond Football club double its membership
 

Similar to Tallerpractica

Identificacion De Las Llaves Foraneas
Identificacion De Las Llaves ForaneasIdentificacion De Las Llaves Foraneas
Identificacion De Las Llaves Foraneas
robertjeison
 
Taller 4
Taller 4Taller 4
Taller 4
blaze0002
 
Taller4
Taller4Taller4
Taller4
Johan Ospina
 
Taller4
Taller4Taller4
Taller4
Johan Ospina
 
When debugging the code, use Drop table statementsto drop pr.docx
 When debugging the code, use Drop table statementsto drop pr.docx When debugging the code, use Drop table statementsto drop pr.docx
When debugging the code, use Drop table statementsto drop pr.docx
aryan532920
 
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
Rodrigo Kiyoshi Saito
 
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
Rodrigo Kiyoshi Saito
 
Database Implementation Final Document
Database Implementation Final DocumentDatabase Implementation Final Document
Database Implementation Final Document
Conor O'Callaghan
 
ScottCreate_1.pdf
ScottCreate_1.pdfScottCreate_1.pdf
ScottCreate_1.pdf
LaaouissiAzed
 
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MRBD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
Rodrigo Kiyoshi Saito
 
The Story About The Migration
 The Story About The Migration The Story About The Migration
The Story About The Migration
EDB
 
Cassandra summit keynote 2014
Cassandra summit keynote 2014Cassandra summit keynote 2014
Cassandra summit keynote 2014
jbellis
 
Taller 3 camilo uribe2308542
Taller 3  camilo uribe2308542Taller 3  camilo uribe2308542
Taller 3 camilo uribe2308542
Kmilo U
 
Appendix A Tables
Appendix A   TablesAppendix A   Tables
Appendix A Tables
LiquidHub
 
rules, events and workflow
rules, events and workflowrules, events and workflow
rules, events and workflow
Mark Proctor
 
Writeable CTEs: The Next Big Thing
Writeable CTEs: The Next Big ThingWriteable CTEs: The Next Big Thing
Writeable CTEs: The Next Big Thing
PostgreSQL Experts, Inc.
 
Sql ejercicio 1
Sql ejercicio 1Sql ejercicio 1
Sql ejercicio 1
Jillian Motoharu
 
Please follow the cod eand comments for description CODE #incl.pdf
Please follow the cod eand comments for description CODE #incl.pdfPlease follow the cod eand comments for description CODE #incl.pdf
Please follow the cod eand comments for description CODE #incl.pdf
annaielectronicsvill
 
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docxEJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
leovasquez17
 
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docxEJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
leovasquez17
 

Similar to Tallerpractica (20)

Identificacion De Las Llaves Foraneas
Identificacion De Las Llaves ForaneasIdentificacion De Las Llaves Foraneas
Identificacion De Las Llaves Foraneas
 
Taller 4
Taller 4Taller 4
Taller 4
 
Taller4
Taller4Taller4
Taller4
 
Taller4
Taller4Taller4
Taller4
 
When debugging the code, use Drop table statementsto drop pr.docx
 When debugging the code, use Drop table statementsto drop pr.docx When debugging the code, use Drop table statementsto drop pr.docx
When debugging the code, use Drop table statementsto drop pr.docx
 
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando Dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando Dados - Parte 04 - Exercicios Enunciado
 
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios EnunciadoBD I - Aula 13 B - Agrupando dados  - Parte 04 - Exercicios Enunciado
BD I - Aula 13 B - Agrupando dados - Parte 04 - Exercicios Enunciado
 
Database Implementation Final Document
Database Implementation Final DocumentDatabase Implementation Final Document
Database Implementation Final Document
 
ScottCreate_1.pdf
ScottCreate_1.pdfScottCreate_1.pdf
ScottCreate_1.pdf
 
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MRBD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
BD I - Aula 07 A - Parte 1 - FN - Resolucao - Exerc 02 MR
 
The Story About The Migration
 The Story About The Migration The Story About The Migration
The Story About The Migration
 
Cassandra summit keynote 2014
Cassandra summit keynote 2014Cassandra summit keynote 2014
Cassandra summit keynote 2014
 
Taller 3 camilo uribe2308542
Taller 3  camilo uribe2308542Taller 3  camilo uribe2308542
Taller 3 camilo uribe2308542
 
Appendix A Tables
Appendix A   TablesAppendix A   Tables
Appendix A Tables
 
rules, events and workflow
rules, events and workflowrules, events and workflow
rules, events and workflow
 
Writeable CTEs: The Next Big Thing
Writeable CTEs: The Next Big ThingWriteable CTEs: The Next Big Thing
Writeable CTEs: The Next Big Thing
 
Sql ejercicio 1
Sql ejercicio 1Sql ejercicio 1
Sql ejercicio 1
 
Please follow the cod eand comments for description CODE #incl.pdf
Please follow the cod eand comments for description CODE #incl.pdfPlease follow the cod eand comments for description CODE #incl.pdf
Please follow the cod eand comments for description CODE #incl.pdf
 
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docxEJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
 
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docxEJERCICIOS DE BORLAND C++ 2DA PARTE.docx
EJERCICIOS DE BORLAND C++ 2DA PARTE.docx
 

Recently uploaded

“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
Zilliz
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 

Recently uploaded (20)

“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 

Tallerpractica

  • 1. BLOQUE(COB,NOMBRE) SALON(COS,NOMBRE,BLOQUE_COB) ASIGNATURA(COA,NOMBRE,CREDITOS,HTI,AC,HP, SALON_COS, DOCENTE_COD, AREA_COAR ,PROGRAMA_COP) DOCENTE(COD,NOMBRE,FECHANACIMIENTO,PREGRADO,POSTGRADO,FECHAINGRESO) AREA(COAR,NOMBRE) PROGRAMA(COP,NOMBRE,FACULTAD_COF) FACULTAD(COF,NOMBRE) ASIGNATURA_HAS_PREREQUISITO(ASIGNATURA_COA,PREREQUISITO_COPR) PREREQUISITOS(COPR,NOMBREPRERE) 1626235114300 CREATE TABLE " AREA" (" COAR" NUMBER NOT NULL ENABLE, " NOMBRE" CHAR(35) NOT NULL ENABLE, CONSTRAINT " AREA_PK" PRIMARY KEY (" COAR" ) ENABLE ) / CREATE TABLE " DOCENTE" (" COD" NUMBER NOT NULL ENABLE, " NOMBRE" CHAR(60) NOT NULL ENABLE, " PREGRADO" CHAR(100) NOT NULL ENABLE, " POSTGRADO" CHAR(100) NOT NULL ENABLE, " FECHAINGRESO" CHAR(20) NOT NULL ENABLE, CONSTRAINT " DOCENTE_PK" PRIMARY KEY (" COD" ) ENABLE ) / CREATE TABLE " PROGRAMA" (" COP" NUMBER NOT NULL ENABLE, " FACULTAD_COF" NUMBER, " NOMBRE" CHAR(60) NOT NULL ENABLE, CONSTRAINT " PROGRAMA_PK" PRIMARY KEY (" COP" ) ENABLE, CONSTRAINT " PROGRAMA_FK" FOREIGN KEY (" FACULTAD_COF" ) REFERENCES " FACULTAD" (" COF" ) ENABLE ) / CREATE TABLE " SALON" (" COS" NUMBER NOT NULL ENABLE, " NOMBRE" CHAR(60) NOT NULL ENABLE, " BLOQUE_COB" NUMBER, CONSTRAINT " SALON_PK" PRIMARY KEY (" COS" ) ENABLE, CONSTRAINT " SALON_FK" FOREIGN KEY (" BLOQUE_COB" ) REFERENCES " BLOQUE" (" COB" ) ENABLE ) / CREATE TABLE " ASIGNATURA" (" COA" NUMBER NOT NULL ENABLE, " DOCENTE_COD" NUMBER, " AREA_COAR" NUMBER, " PROGRAMA_COP" NUMBER, " SALON_COS" NUMBER, " NOMBRE" CHAR(30) NOT NULL ENABLE, " CREDITOS" CHAR(12) NOT NULL ENABLE, " HTI" CHAR(1) NOT NULL ENABLE, " AC" CHAR(1) NOT NULL ENABLE, " HP" CHAR(1) NOT NULL ENABLE, CONSTRAINT " ASIGNATURA_PK" PRIMARY KEY (" COA" ) ENABLE, CONSTRAINT " ASIGNATURA_FK" FOREIGN KEY (" DOCENTE_COD" ) REFERENCES " DOCENTE" (" COD" ) ENABLE, CONSTRAINT " DOCENTE_FK2" FOREIGN KEY (" AREA_COAR" ) REFERENCES " AREA" (" COAR" ) ENABLE, CONSTRAINT " DOCENTE_FK3" FOREIGN KEY (" PROGRAMA_COP" ) REFERENCES " PROGRAMA" (" COP" ) ENABLE, CONSTRAINT " DOCENTE_FK4" FOREIGN KEY (" SALON_COS" ) REFERENCES " SALON" (" COS" ) ENABLE ) / CREATE TABLE " PREREQUISITOS" (" COPR" NUMBER NOT NULL ENABLE, " NOMBREPRERE" CHAR(30) NOT NULL ENABLE, CONSTRAINT " PREREQUISITOS_PK" PRIMARY KEY (" COPR" ) ENABLE ) / CREATE TABLE " ASIGPRE" (" ASIGNATURA_COA" NUMBER, " PREREQUISITO_COPR" NUMBER, CONSTRAINT " ASIGPRE_FK" FOREIGN KEY (" ASIGNATURA_COA" ) REFERENCES " ASIGNATURA" (" COA" ) ENABLE, CONSTRAINT " PREREQUISITOS_FK2" FOREIGN KEY (" PREREQUISITO_COPR" ) REFERENCES " PREREQUISITOS" (" COPR" ) ENABLE ) / CREATE TABLE " BLOQUE" (" COB" NUMBER NOT NULL ENABLE, " NOMBRE" CHAR(20) NOT NULL ENABLE, CONSTRAINT " BLOQUE_PK" PRIMARY KEY (" COB" ) ENABLE ) / CREATE TABLE " FACULTAD" (" COF" NUMBER NOT NULL ENABLE, " NOMBRE" CHAR(30) NOT NULL ENABLE, CONSTRAINT " FACULTAD_PK" PRIMARY KEY (" COF" ) ENABLE ) /