SlideShare a Scribd company logo
Base de datos  Oracle  para una galeria de venta de fotografias. Arkaitz Lira Luque + + + +
Modelo entidad – relación
Tablas y contenidos    I/IV ,[object Object],[object Object]
Tablas y contenidos    II/IV  ,[object Object],[object Object]
Tablas y contenidos    III/IV ,[object Object],[object Object],[object Object]
Tablas y contenidos    IV/IV ,[object Object],[object Object]
En detalle: constraints ,[object Object],Cliente: Fotografias:  FOTOGRAFIAS_FK = FOTOGRAFIAS_FK_CLIENTE
En detalle: constraints ,[object Object],Pagotarj: Precios: Tamano:
En detalle: constraints ,[object Object],Visitas:
Administración de usuarios: Tablas I ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Administración de usuarios: Tablas II ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Administración de usuarios: Tablas III ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Administración de usuarios - Permisos Arkaitz Prop. Esquema Usuario Usuario Usuario Administrador / Arkaitz Visitas Envios Envios Envios Envios Envios Envios Envios / Usuario Administrador / Arkaitz Tamano Envios Contable Contable / Envios Contable Contable Contable Contable / Envios / Usuario Administrador / Arkaitz Precios Envios Envios Envios Envios Envios Envios / Usuario Envios Administrador / Arkaitz Pedidos Contable Contable Contable Usuario Contable Usuario Contable Administrador / Arkaitz PagoTarj Usuario Usuario Usuario Usuario Usuario Administrador / Arkaitz Grupos Envios Envios Usuario Usuario Usuario Envios / Usuario Administrador / Arkaitz Fotografias Contable / Envios Envios Contable /  Usuario / Envios Envios Usuario / Envios Envios Contable / Usuario / Envios Administrador / Arkaitz Cliente Administrador / Arkaitz Almacen GRANT DROP ALTER CREATE  INDEX DELETE UPDATE INSERT SELECT Todos los  permisos
Administración de usuarios: Views ,[object Object],Usuarios Views Mixtas Views de tabla completa Consultas mixtas Inserciones, actualizaciones. Usuarios Consultas mixtas Usuarios Consultas mixtas EJEMPLO: Usuario  dispone de 6 views de  tabla completa  y  10  views mixtas  sobre views mixtas que el DBAdmin ha creado previamente.
Views y consultas ,[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "ADMINS" ("Grupo", "Creado", "Por", "Nombre", "Apellidos", "Fecha de alta") AS  select "GRUPOS"."nombgrupo" as "Grupo" , "GRUPOS"."creado" as "Creado", "CLIENTE"."username" as "Por", "CLIENTE"."nombre" as "Nombre", "CLIENTE"."apellidos" as "Apellidos", "CLIENTE"."fechalta" as "Fecha de alta" from "GRUPOS" "GRUPOS", "CLIENTE" "CLIENTE"  where "CLIENTE"."username" = "GRUPOS"."admin" order by "GRUPOS"."nombgrupo"   CREATE OR REPLACE FORCE VIEW "CLTARJ" ("Usuario", "Nombre", "Apellidos", "Tarj. Bloqueada", "Fecha de alta") AS  select "CL"."username" as "Usuario", "CL"."nombre" as "Nombre", "CL"."apellidos" as "Apellidos", "PG"."bloqueado" as "Tarj. Bloqueada", "CL"."fechalta" as "Fecha de alta" from "PAGOTARJ" "PG", "CLIENTE" "CL"  where "CL"."username" = "PG"."username" AND  "PG"."bloqueado" LIKE 'no'  order by "CL"."fechalta"   CLTARJBLOQ es otra view con el mismo contenido pero nos permite ver los clientes con tarjeta bloqueada.  ("PG"."bloqueado" LIKE 'si' )
Views y consultas ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "FOTOSGRUPOCONCEPTUAL" ("Grupo", "Titulo de la foto", "Sacada por", "Impresiones hasta", "Precio 15x20", "Precio 30x40", "Precio 50x70") AS  select "G"."nombgrupo" as "Grupo", "F"."titulo" as "Titulo de la foto", "F"."propietario" as "Sacada por", "T"."tamano" as "Impresiones hasta", "P"."precio100" as "Precio 15x20", "P"."precio110" as "Precio 30x40", "P"."precio111" as "Precio 50x70" from "GRUPOS" "G", "PRECIOS" "P", "FOTOGRAFIAS" "F", "TAMANO" "T“ where "G"."idgrupo" = "F"."grupo" and "G"."idgrupo" = 4 and "T"."codigo" = "F"."tamanos" and "P"."idprecio" = "F"."precios"   CREATE OR REPLACE FORCE VIEW "IDFOTOFECHA" ("Id", "Titulo", "De", "Fecha") AS  select "FOTOGRAFIAS"."nombfoto" as "Id", "FOTOGRAFIAS"."titulo" as "Titulo", "FOTOGRAFIAS"."propietario" as "De", "FOTOGRAFIAS"."fecha" as "Fecha"  from "FOTOGRAFIAS"   FOTOSGRUPODEPORTES, FOTOSGRUPOMODA, FOTOSGRUPORETRATO y FOTOSGRUPOFAUNAFLORA son igual a ésta pero cambiando el idgrupo por el correspondiente al del grupo que queremos ver.
Views y consultas ,[object Object],[object Object],[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "MASVENDIDAS" ("Pedidos", "Nombfoto", "Titulo", "Sacada por", "Impresiones hasta", "Precio 15x20", "Precio 30x40", "Precio 50x70", "Vendidas") AS select COUNT("P"."foto") as "Pedidos", "F"."nombfoto" as "Nombfoto", "F"."titulo" as "Titulo", "F"."propietario" as "Sacada por", "T"."tamano" as "Impresiones hasta", "PR"."precio100" as "Precio 15x20", "PR"."precio110" as "Precio 30x40", "PR"."precio111" as "Precio 50x70", SUM("P"."cantidad") as "Vendidas" from "PEDIDOS" "P", "FOTOGRAFIAS" "F", "PRECIOS" "PR", "TAMANO" "T"  where "F"."nombfoto" = "P"."foto" and "T"."codigo" = "F"."tamanos" and "PR"."idprecio" = "F"."precios" group by "F"."titulo", "F"."nombfoto", "F"."propietario", "T"."tamano", "PR"."precio100", "PR"."precio110", "PR"."precio111"   CREATE OR REPLACE FORCE VIEW "MASVISITADAS" ("Foto", "Titulo", "De", "Num. Visitas") AS  select "FOTOGRAFIAS"."nombfoto" as "Foto", "FOTOGRAFIAS"."titulo" as "Titulo", "FOTOGRAFIAS"."propietario" as "De", COUNT("VISITAS"."idvisita") as "Num. Visitas" from "VISITAS" "VISITAS", "FOTOGRAFIAS" "FOTOGRAFIAS"  where "FOTOGRAFIAS"."nombfoto" = "VISITAS"."nfoto" group by "FOTOGRAFIAS"."nombfoto", "FOTOGRAFIAS"."titulo", "FOTOGRAFIAS"."propietario"  
Views y consultas ,[object Object],[object Object],[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "NOHANCOMPRADO" ("nombre", "apellidos", "localidad", "comprador", "vendedor", "Ventas hechas") AS  select "CLIENTE"."nombre" as "nombre", "CLIENTE"."apellidos" as "apellidos", "CLIENTE"."localidad" as "localidad", "CLIENTE"."comprador" as "comprador", "CLIENTE"."vendedor" as "vendedor", COUNT("PEDIDOS"."foto") as "Ventas hechas" from "CLIENTE" "CLIENTE", "FOTOGRAFIAS" "FOTOGRAFIAS", "PEDIDOS" "PEDIDOS"  where "PEDIDOS"."foto" = "FOTOGRAFIAS"."nombfoto" AND "FOTOGRAFIAS"."propietario" = "CLIENTE"."username" AND "CLIENTE"."comprador" = 'no'  group by "CLIENTE"."nombre", "CLIENTE"."apellidos", "CLIENTE"."localidad", "CLIENTE"."comprador", "CLIENTE"."vendedor"   CREATE OR REPLACE FORCE VIEW "PEDIDOSINFORMACION" ("Ultimo pedido", "Cantidad Maxima pedida") AS select MAX("P"."fechaped") as "Ultimo pedido", MAX("P"."cantidad") as "Cantidad Maxima pedida" from "PEDIDOS" "P" where "P"."estado" LIKE 'En proceso'  
Views y consultas ,[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "PEDIDOSASOCIADOS" ("Pedido asociado", "Fecha pedido", "Nombfoto", "Titulo", "Sacada por", "Pedida por", "En tamano", "Estado", "Precio/unit", "Cantidad", "Total sin I.V.A", "Total del pedido") AS select "P"."pedasociados" as "Pedido asociado", "P"."fechaped" as "Fecha pedido", "F"."nombfoto" as "Nombfoto", "F"."titulo" as "Titulo", "F"."propietario" as "Sacada por", "P"."usuario" as "Pedida por", "T"."tamano" as "En tamano", "P"."estado" as "Estado", "P"."precio" as "Precio/unit", "P"."cantidad" as "Cantidad", "P"."precio" * "P"."cantidad" as "Total sin I.V.A", "P"."precio" * "P"."cantidad"+("P"."precio" * "P"."cantidad")*0.16 as "Total del pedido" from "PEDIDOS" "P", "FOTOGRAFIAS" "F", "PRECIOS" "PR", "TAMANO" "T"  where "F"."nombfoto" = "P"."foto" and "T"."codigo" = "P"."tamano" and "PR"."idprecio" = "F"."precios" and "P"."estado" NOT LIKE 'Enviado' and "P"."pedasociados" LIKE 'P%' order by "P"."pedasociados", "P"."fechaped"
Views y consultas ,[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "PEDIDOSENPROCESO" ("Nombfoto", "Titulo", "Sacada por", "Pedida por", "Fecha", "Enviado", "En tamano", "Estado", "Precio/unit", "Cantidad", "Total sin I.V.A", "Total del pedido") AS  select "F"."nombfoto" as "Nombfoto", "F"."titulo" as "Titulo", "F"."propietario" as "Sacada por", "P"."usuario" as "Pedida por", "P"."fechaped" as "Fecha", "P"."enviado" as "Enviado", "T"."tamano" as "En tamano", "P"."estado" as "Estado", "P"."precio" as "Precio/unit", "P"."cantidad" as "Cantidad", "P"."precio" * "P"."cantidad" as "Total sin I.V.A", "P"."precio" * "P"."cantidad"+("P"."precio" * "P"."cantidad")*0.16 as "Total del pedido" from "PEDIDOS" "P", "FOTOGRAFIAS" "F", "PRECIOS" "PR", "TAMANO" "T"  where "F"."nombfoto" = "P"."foto" and "T"."codigo" = "P"."tamano" and "PR"."idprecio" = "F"."precios" and "P"."estado" NOT LIKE 'Enviado'
Views y consultas ,[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "PEDIDOSENVIADOS" ("Nombfoto", "Titulo", "Sacada por", "Pedida por", "Fecha", "Enviado", "En tamano", "Estado", "Precio/unit", "Cantidad", "Total sin I.V.A", "Total del pedido") AS  select "F"."nombfoto" as "Nombfoto", "F"."titulo" as "Titulo", "F"."propietario" as "Sacada por", "P"."usuario" as "Pedida por", "P"."fechaped" as "Fecha", "P"."enviado" as "Enviado", "T"."tamano" as "En tamano", "P"."estado" as "Estado", "P"."precio" as "Precio/unit", "P"."cantidad" as "Cantidad", "P"."precio" * "P"."cantidad" as "Total sin I.V.A", "P"."precio" * "P"."cantidad"+("P"."precio" * "P"."cantidad")*0.16 as "Total del pedido" from "PEDIDOS" "P", "FOTOGRAFIAS" "F", "PRECIOS" "PR", "TAMANO" "T"  where "F"."nombfoto" = "P"."foto" and "T"."codigo" = "P"."tamano" and "PR"."idprecio" = "F"."precios" and ”P"."estado" LIKE 'Enviado'
Views y consultas ,[object Object],[object Object],[object Object],CREATE OR REPLACE FORCE VIEW "TAMAÑOPRECIOS" ("Codigo de tamaño", "Id. precio", "Tamaños", "Precio 15x20", "Precio 30x40", "Precio 50x70") AS  select "T"."codigo" as "Codigo de tamaño", "PR"."idprecio" as "Id. precio", "T"."tamano" as "Tamaños", "PR"."precio100" as "Precio 15x20", "PR"."precio110" as "Precio 30x40", "PR"."precio111" as "Precio 50x70"  from "TAMANO" "T", "PRECIOS" "PR“ where ("T"."codigo" = 100 AND "PR"."idprecio" BETWEEN 1 AND 3) OR ("T"."codigo" = 110 AND "PR"."idprecio" BETWEEN 2 AND 3) OR ("T"."codigo" = 111 AND "PR"."idprecio" BETWEEN 3 AND 3)  ORDER BY "PR"."precio111", "PR"."idprecio"
Dificultades  I/II ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],3.  Insertar las fotografias del directorio c:/oracle/blob/imgs/ en la bbdd: DECLARE l_bfile  BFILE; l_blob  BLOB; BEGIN INSERT INTO  ALMACEN   ( IDALMACEN ,  NFOTO ,  BIN ) VALUES  (' 000013 ',' 013 ', EMPTY_BLOB() ) RETURN BIN INTO  l_blob;  l_bfile := BFILENAME('IMGS', ‘ Nombre del fichero jpg '); DBMS_LOB.fileopen(l_bfile, Dbms_Lob.File_Readonly); DBMS_LOB.loadfromfile(l_blob,l_bfile,DBMS_LOB.getlength(l_bfile)); DBMS_LOB.fileclose(l_bfile); COMMIT; EXCEPTION WHEN OTHERS THEN ROLLBACK; RAISE; END;
Dificultades  II/II ,[object Object],[object Object],[object Object],[object Object],[object Object],Los usuarios no ven tablas ni views de otro Esquema incluso dandoles permisos suficientes: Solución:  Como el esquema de trabajo es diferente para cada usuario tenemos que conceder los permisos, y crear Views en cada cuenta para que puedan obtener la informacion y ejecutar operaciones sobre las tablas.
Video explicativo del uso de TOAD para recuperar las imágenes.
Base de datos  Oracle  para una galeria de venta de fotografias. Arkaitz Lira Luque + + + +

More Related Content

Featured

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
marketingartwork
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
Skeleton Technologies
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
SpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Lily Ray
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
Rajiv Jayarajah, MAppComm, ACC
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
Christy Abraham Joy
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
Vit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
MindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
GetSmarter
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
Alireza Esmikhani
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
Project for Public Spaces & National Center for Biking and Walking
 

Featured (20)

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 

Base De Datos Oracle Para Una Galeria De

  • 1. Base de datos Oracle para una galeria de venta de fotografias. Arkaitz Lira Luque + + + +
  • 2. Modelo entidad – relación
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13. Administración de usuarios - Permisos Arkaitz Prop. Esquema Usuario Usuario Usuario Administrador / Arkaitz Visitas Envios Envios Envios Envios Envios Envios Envios / Usuario Administrador / Arkaitz Tamano Envios Contable Contable / Envios Contable Contable Contable Contable / Envios / Usuario Administrador / Arkaitz Precios Envios Envios Envios Envios Envios Envios / Usuario Envios Administrador / Arkaitz Pedidos Contable Contable Contable Usuario Contable Usuario Contable Administrador / Arkaitz PagoTarj Usuario Usuario Usuario Usuario Usuario Administrador / Arkaitz Grupos Envios Envios Usuario Usuario Usuario Envios / Usuario Administrador / Arkaitz Fotografias Contable / Envios Envios Contable / Usuario / Envios Envios Usuario / Envios Envios Contable / Usuario / Envios Administrador / Arkaitz Cliente Administrador / Arkaitz Almacen GRANT DROP ALTER CREATE INDEX DELETE UPDATE INSERT SELECT Todos los permisos
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25. Video explicativo del uso de TOAD para recuperar las imágenes.
  • 26. Base de datos Oracle para una galeria de venta de fotografias. Arkaitz Lira Luque + + + +