100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
INF3707 ASSIGNMENT 3 2023 Database Design and Implementation 5,36 €   Añadir al carrito

Otro

INF3707 ASSIGNMENT 3 2023 Database Design and Implementation

 29 vistas  0 veces vendidas
  • Grado
  • Institución

INF3707 ASSIGNMENT 3 2023 Database Design and Implementation

Vista previa 2 fuera de 10  páginas

  • 8 de agosto de 2023
  • 10
  • 2023/2024
  • Otro
  • Desconocido
avatar-seller
QUESTION 1

1.1 The sequence MY_FIRST_SEQ can be created by using the following code:



CREATE SEQUENCE MY_FIRST_SEQ

START WITH 5

INCREMENT BY -3

MINVALUE 0

NOCYCLE;



1.2 The SELECT statement to display NEXTVAL for MY_FIRST_SEQ three times can be issued as
follows:



SELECT MY_FIRST_SEQ.NEXTVAL FROM dual;

SELECT MY_FIRST_SEQ.NEXTVAL FROM dual;

, SELECT MY_FIRST_SEQ.NEXTVAL FROM dual;



The error on the third SELECT statement is caused by reaching the maximum value defined for the
sequence. Since the sequence has a maximum value of 0, it cannot generate a value greater than 0.



1.3 The failure to create the table ord_items is caused by referencing a non-existent table "orders" in
the FOREIGN KEY constraint. The corrected CREATE TABLE code is as follows:



CREATE SEQUENCE ord_seq

INCREMENT BY 10

START WITH 120

MAXVALUE 9999

NOCYCLE;



CREATE TABLE ord_items

(ord_no NUMBER (4) DEFAULT ord_seq.NEXTVAL NOT NULL,

item_no NUMBER(3),

qty NUMBER(3) CHECK (qty BETWEEN 100 AND 200),

expiry_date date CHECK (expiry_date > SYSDATE),

CONSTRAINT its_pky PRIMARY KEY (ord_no, item_no),

CONSTRAINT ord_fky FOREIGN KEY(ord_no) REFERENCES ord_items(ord_no)

);



QUESTION 2

.1 To create the user Peter with a password that expires and assign the role of salesperson, use the
following code:



CREATE USER Peter IDENTIFIED BY [password] PASSWORD EXPIRE;



GRANT salesperson TO Peter;

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller GoldenKey. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy this summary for 5,36 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

Founded in 2010, the go-to place to buy summaries for 14 years now

Empieza a vender
5,36 €
  • (0)
  Añadir