Advertisement
alexarcan

dbd_lab11_sql

Dec 5th, 2016
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. --b)
  2. --LS / DIR - Displays all the sub-folders / files of a certain folder
  3. SELECT name
  4. FROM(
  5. SELECT directoryid, name, parentid FROM DIRECTORIES
  6. UNION
  7. SELECT 0, name, directoryid FROM FILES
  8. )
  9. WHERE parentid=7;
  10.  
  11. --TREE - Displays all the folders / files in a "tree-like" view (Connect By)
  12.  
  13. SELECT level, LPAD (' ', 2 * (LEVEL - 1)) || name AS padname
  14. FROM (select directoryid, name, parentid FROM directories
  15. UNION
  16. SELECT 0, name, directoryid from files) res
  17. START WITH directoryid=1
  18. CONNECT BY PRIOR directoryid=parentid
  19. ORDER siblings BY name;
  20.  
  21. -- MKDIR - Creates a folder (complying with the initial constraints)
  22. INSERT INTO directories values(2,'genres',1);--already exists=>error
  23. INSERT INTO directories values(10,'documentaries',3);
  24.  
  25. -- MKFILE - Creates a file (complying with the initial constraints)
  26. INSERT INTO files values(7,'xyz',1,'b');--already exists=>error
  27. INSERT INTO files values(8,'best_jazz',8,'m');
  28.  
  29. -- (CAT)- adds data to it
  30. UPDATE files SET content=CONCAT(content,'nop') WHERE directoryid = 8;
  31.  
  32. -- values to be deleted:
  33. INSERT INTO directories values (11,'A',1);
  34. INSERT INTO directories values (12,'B',7);
  35. INSERT INTO directories values (13,'C',7);
  36.  
  37. --RMDIR - Deletes a folder and all the corresponding files / sub-folders
  38. --make files table fk to be on cascade delete:
  39. ALTER TABLE FILES
  40. ADD FOREIGN KEY (DIRECTORYID)
  41. REFERENCES DIRECTORIES(DIRECTORYID)
  42. ON DELETE CASCADE;
  43.  
  44. DELETE FROM directories
  45. WHERE directoryid = 13;
  46.  
  47. --DEL - Deletes a file
  48. DELETE FROM files
  49. WHERE name = 'abc' AND directoryid = 7;
  50.  
  51.  
  52. -- c) PL/SQL - Create PL/SQL stored procedures / functions corresponding to the
  53. -- above mentioned commands + CD (change directory)
  54.  
  55. set define off;
  56.  
  57. CREATE OR REPLACE PROCEDURE "LS"
  58. (
  59. DIRID IN directories.directoryid%TYPE
  60. ) AS
  61. norows EXCEPTION;
  62. CURSOR results IS
  63. select name
  64. from (select directoryid, name, parentid from directories
  65. union
  66. select 0, name, directoryid from files) res
  67. where parentid=dirid;
  68. BEGIN
  69. if SQL%ROWCOUNT=0 then
  70. raise norows;
  71. else
  72. dbms_output.put_line('Directories and files found in the directory with directoryid = '||dirid||':');
  73. FOR rec in results LOOP
  74. dbms_output.put_line(rec.name);
  75. END LOOP;
  76. end if;
  77. EXCEPTION
  78. when norows then
  79. dbms_output.put_line('Directory with id '||dirid||' is empty.');
  80. END LS;
  81.  
  82. SET serveroutput ON
  83. begin
  84. ls(7);
  85. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement