SQL server 2017 ON DELETE CASCADE question











up vote
1
down vote

favorite












Below is the code for the entire script. the only issue i have is with the FK below (see lines with -- in front) to remove it. if I add that I get an error using a DELETE, if I only apply the 4 constraints instead of 5 I can delete from the Artist table and it deletes from the other 3 as it should. but when I add PersonalInfo with an ON DELETE CASCADE suddenly I get an error, why? I plan to remove AlbumID from all tables so that they all rely on ArtistID to be identified. Allowing me to use the same column for FK as PK.



 CREATE TABLE Artists
( ArtistName varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, NumberOfAlbumTitles varchar(10) NOT NULL, AlbumID varchar(20) NOT NULL,
PRIMARY KEY (ArtistID))
GO
CREATE TABLE Sales
( AlbumID varchar(20) NOT NULL, CopiesSoldYTD varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, SalesTotal varchar(20) NOT NULL,
PRIMARY KEY (AlbumID))
GO
CREATE TABLE Production
( AlbumID varchar(20), Copies varchar(20) NOT NULL, UnitPrice varchar(10) NOT NULL, AlbumTitle varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL,
PRIMARY KEY (ArtistID))
GO
CREATE TABLE PersonalInfo
( FirstName varchar(20) NOT NULL, LastName varchar(30) NOT NULL, HomeAddress varchar(30) NOT NULL, PhoneNumber varchar(10) NOT NULL, ArtistID varchar(20) NOT NULL,
PRIMARY KEY (ArtistID))
GO
CREATE TABLE PersonalInfo2
( City varchar(20) NOT NULL, LabelName varchar(20), PostalZip varchar(6) NOT NULL, Region varchar(30) NOT NULL, ArtistID varchar(20) NOT NULL,
PRIMARY KEY (ArtistID))
GO
INSERT INTO Artists
VALUES ('Mr Roberts', 1, 4, 10),
('MC Boogie', 2, 3, 11),
('Singin Sam', 3, 1, 12),
('Avenger', 4, 2, 13)

GO
INSERT INTO Sales
VALUES (10, 232 , 1, 2320),
(11, 151, 2, 1510),
(12, 129, 3, 1290),
(13, 487, 4, 4870)
GO
INSERT INTO Production
VALUES (10 , 500 , 10, 'Roberts 1', 1),
(11, 700, 10, 'Time To Boogie', 2),
(12, 250, 10, ' Dance Dance Dance', 3),
(13, 1000, 10, 'The Revenge Of...', 4)
GO
INSERT INTO PersonalInfo
VALUES ('Brad', 'Roberts' , ' 126 Somewhere Lane', 2048888888, 1),
('Doug', 'Boogie', '234 East bay', 9078789090, 2),
('Raymond', 'Disco', ' 123 Dancing Queen Blvd', 3038761234, 3),
('Ryan', 'Apple', '66 Berkshire Bay', 4549091212, 4)
GO
INSERT INTO PersonalInfo2
VALUES ('Winnipeg', 'Ready Records', 'R2E9N8', 1, 1),
('Calgary','Set Records', 'R3J1M7', 2, 2),
('Texas', 'Go Records', '56555', 5, 3),
('London', 'Canadian Recordings','98887', 4, 4)
GO
ALTER TABLE Sales
ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
ON DELETE CASCADE
GO
--ALTER TABLE PersonalInfo
--ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
--GO
ALTER TABLE PersonalInfo2
ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
ON DELETE CASCADE
GO
ALTER TABLE Sales
ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
GO
ALTER TABLE Production
ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
ON DELETE CASCADE



GO
UPDATE Artists
SET ArtistName = 'Mr. Roberts'
WHERE ArtistID = 1
GO
UPDATE Production
SET Copies = 589, UnitPrice = 12
WHERE AlbumID = 10
GO
UPDATE PersonalInfo
SET HomeAddress = '345 Pritchard Rd', PhoneNumber = 2042341234
WHERE ArtistID = 1
GO
CREATE INDEX index1
ON dbo.Artists (ArtistID, AlbumID);
GO
CREATE INDEX index3
ON Sales (AlbumID, ArtistID);
GO
CREATE INDEX index4
ON Production (AlbumID, ArtistID);
GO
CREATE INDEX index5
ON PersonalInfo2 (City, ArtistID);
GO
CREATE INDEX index6
ON PersonalInfo (ArtistID);
GO
CREATE INDEX index7
ON Artists (ArtistName, NumberOfAlbumTitles);
GO
CREATE INDEX index8
ON Production (ArtistID, AlbumID, Copies, UnitPrice);
GO
CREATE INDEX index9
ON Artists (AlbumID);
GO
CREATE INDEX index11
ON Sales (ArtistID);
GO
CREATE INDEX index12
ON Production (ArtistID)
GO
CREATE INDEX index13
ON PersonalInfo2 (ArtistID);
GO
CREATE VIEW view1 AS
SELECT FirstName, LastName, ArtistName, PhoneNumber, CopiesSoldYTD, SalesTotal
FROM PersonalInfo
INNER JOIN Sales
ON PersonalInfo.ArtistID = Sales.ArtistID
INNER JOIN Artists
ON Sales.ArtistID = Artists.ArtistID
GO
CREATE PROCEDURE Proc1
AS
SELECT FirstName, LastName, Artists.ArtistName, NumberOfAlbumTitles, Artists.ArtistID, LabelName, PhoneNumber, City, UnitPrice, CopiesSoldYTD, SalesTotal
FROM Artists
LEFT JOIN PersonalInfo
ON Artists.ArtistID = PersonalInfo.ArtistID
LEFT JOIN PersonalInfo2
ON PersonalInfo.ArtistID = PersonalInfo2.ArtistID
INNER JOIN Production
ON PersonalInfo2.ArtistID = Production.ArtistID
INNER JOIN Sales
ON Production.ArtistID = Sales.ArtistID
GO
CREATE PROCEDURE dbo.FinalProjectErrorHandling2
AS
BEGIN TRY
SELECT CopiesSoldYTD, SalesTotal
FROM Sales
GROUP BY SalesTotal, CopiesSoldYTD
HAVING CopiesSoldYTD > 200
END TRY
BEGIN CATCH
WHILE(ERROR_NUMBER() > 0 )
RAISERROR ('the error was handled',0,1) WITH NOWAIT
SELECT
ERROR_MESSAGE() AS ErrorMessage
END CATCH
GO









share|improve this question




























    up vote
    1
    down vote

    favorite












    Below is the code for the entire script. the only issue i have is with the FK below (see lines with -- in front) to remove it. if I add that I get an error using a DELETE, if I only apply the 4 constraints instead of 5 I can delete from the Artist table and it deletes from the other 3 as it should. but when I add PersonalInfo with an ON DELETE CASCADE suddenly I get an error, why? I plan to remove AlbumID from all tables so that they all rely on ArtistID to be identified. Allowing me to use the same column for FK as PK.



     CREATE TABLE Artists
    ( ArtistName varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, NumberOfAlbumTitles varchar(10) NOT NULL, AlbumID varchar(20) NOT NULL,
    PRIMARY KEY (ArtistID))
    GO
    CREATE TABLE Sales
    ( AlbumID varchar(20) NOT NULL, CopiesSoldYTD varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, SalesTotal varchar(20) NOT NULL,
    PRIMARY KEY (AlbumID))
    GO
    CREATE TABLE Production
    ( AlbumID varchar(20), Copies varchar(20) NOT NULL, UnitPrice varchar(10) NOT NULL, AlbumTitle varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL,
    PRIMARY KEY (ArtistID))
    GO
    CREATE TABLE PersonalInfo
    ( FirstName varchar(20) NOT NULL, LastName varchar(30) NOT NULL, HomeAddress varchar(30) NOT NULL, PhoneNumber varchar(10) NOT NULL, ArtistID varchar(20) NOT NULL,
    PRIMARY KEY (ArtistID))
    GO
    CREATE TABLE PersonalInfo2
    ( City varchar(20) NOT NULL, LabelName varchar(20), PostalZip varchar(6) NOT NULL, Region varchar(30) NOT NULL, ArtistID varchar(20) NOT NULL,
    PRIMARY KEY (ArtistID))
    GO
    INSERT INTO Artists
    VALUES ('Mr Roberts', 1, 4, 10),
    ('MC Boogie', 2, 3, 11),
    ('Singin Sam', 3, 1, 12),
    ('Avenger', 4, 2, 13)

    GO
    INSERT INTO Sales
    VALUES (10, 232 , 1, 2320),
    (11, 151, 2, 1510),
    (12, 129, 3, 1290),
    (13, 487, 4, 4870)
    GO
    INSERT INTO Production
    VALUES (10 , 500 , 10, 'Roberts 1', 1),
    (11, 700, 10, 'Time To Boogie', 2),
    (12, 250, 10, ' Dance Dance Dance', 3),
    (13, 1000, 10, 'The Revenge Of...', 4)
    GO
    INSERT INTO PersonalInfo
    VALUES ('Brad', 'Roberts' , ' 126 Somewhere Lane', 2048888888, 1),
    ('Doug', 'Boogie', '234 East bay', 9078789090, 2),
    ('Raymond', 'Disco', ' 123 Dancing Queen Blvd', 3038761234, 3),
    ('Ryan', 'Apple', '66 Berkshire Bay', 4549091212, 4)
    GO
    INSERT INTO PersonalInfo2
    VALUES ('Winnipeg', 'Ready Records', 'R2E9N8', 1, 1),
    ('Calgary','Set Records', 'R3J1M7', 2, 2),
    ('Texas', 'Go Records', '56555', 5, 3),
    ('London', 'Canadian Recordings','98887', 4, 4)
    GO
    ALTER TABLE Sales
    ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
    ON DELETE CASCADE
    GO
    --ALTER TABLE PersonalInfo
    --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
    --GO
    ALTER TABLE PersonalInfo2
    ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
    ON DELETE CASCADE
    GO
    ALTER TABLE Sales
    ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
    GO
    ALTER TABLE Production
    ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
    ON DELETE CASCADE



    GO
    UPDATE Artists
    SET ArtistName = 'Mr. Roberts'
    WHERE ArtistID = 1
    GO
    UPDATE Production
    SET Copies = 589, UnitPrice = 12
    WHERE AlbumID = 10
    GO
    UPDATE PersonalInfo
    SET HomeAddress = '345 Pritchard Rd', PhoneNumber = 2042341234
    WHERE ArtistID = 1
    GO
    CREATE INDEX index1
    ON dbo.Artists (ArtistID, AlbumID);
    GO
    CREATE INDEX index3
    ON Sales (AlbumID, ArtistID);
    GO
    CREATE INDEX index4
    ON Production (AlbumID, ArtistID);
    GO
    CREATE INDEX index5
    ON PersonalInfo2 (City, ArtistID);
    GO
    CREATE INDEX index6
    ON PersonalInfo (ArtistID);
    GO
    CREATE INDEX index7
    ON Artists (ArtistName, NumberOfAlbumTitles);
    GO
    CREATE INDEX index8
    ON Production (ArtistID, AlbumID, Copies, UnitPrice);
    GO
    CREATE INDEX index9
    ON Artists (AlbumID);
    GO
    CREATE INDEX index11
    ON Sales (ArtistID);
    GO
    CREATE INDEX index12
    ON Production (ArtistID)
    GO
    CREATE INDEX index13
    ON PersonalInfo2 (ArtistID);
    GO
    CREATE VIEW view1 AS
    SELECT FirstName, LastName, ArtistName, PhoneNumber, CopiesSoldYTD, SalesTotal
    FROM PersonalInfo
    INNER JOIN Sales
    ON PersonalInfo.ArtistID = Sales.ArtistID
    INNER JOIN Artists
    ON Sales.ArtistID = Artists.ArtistID
    GO
    CREATE PROCEDURE Proc1
    AS
    SELECT FirstName, LastName, Artists.ArtistName, NumberOfAlbumTitles, Artists.ArtistID, LabelName, PhoneNumber, City, UnitPrice, CopiesSoldYTD, SalesTotal
    FROM Artists
    LEFT JOIN PersonalInfo
    ON Artists.ArtistID = PersonalInfo.ArtistID
    LEFT JOIN PersonalInfo2
    ON PersonalInfo.ArtistID = PersonalInfo2.ArtistID
    INNER JOIN Production
    ON PersonalInfo2.ArtistID = Production.ArtistID
    INNER JOIN Sales
    ON Production.ArtistID = Sales.ArtistID
    GO
    CREATE PROCEDURE dbo.FinalProjectErrorHandling2
    AS
    BEGIN TRY
    SELECT CopiesSoldYTD, SalesTotal
    FROM Sales
    GROUP BY SalesTotal, CopiesSoldYTD
    HAVING CopiesSoldYTD > 200
    END TRY
    BEGIN CATCH
    WHILE(ERROR_NUMBER() > 0 )
    RAISERROR ('the error was handled',0,1) WITH NOWAIT
    SELECT
    ERROR_MESSAGE() AS ErrorMessage
    END CATCH
    GO









    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      Below is the code for the entire script. the only issue i have is with the FK below (see lines with -- in front) to remove it. if I add that I get an error using a DELETE, if I only apply the 4 constraints instead of 5 I can delete from the Artist table and it deletes from the other 3 as it should. but when I add PersonalInfo with an ON DELETE CASCADE suddenly I get an error, why? I plan to remove AlbumID from all tables so that they all rely on ArtistID to be identified. Allowing me to use the same column for FK as PK.



       CREATE TABLE Artists
      ( ArtistName varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, NumberOfAlbumTitles varchar(10) NOT NULL, AlbumID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE Sales
      ( AlbumID varchar(20) NOT NULL, CopiesSoldYTD varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, SalesTotal varchar(20) NOT NULL,
      PRIMARY KEY (AlbumID))
      GO
      CREATE TABLE Production
      ( AlbumID varchar(20), Copies varchar(20) NOT NULL, UnitPrice varchar(10) NOT NULL, AlbumTitle varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE PersonalInfo
      ( FirstName varchar(20) NOT NULL, LastName varchar(30) NOT NULL, HomeAddress varchar(30) NOT NULL, PhoneNumber varchar(10) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE PersonalInfo2
      ( City varchar(20) NOT NULL, LabelName varchar(20), PostalZip varchar(6) NOT NULL, Region varchar(30) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      INSERT INTO Artists
      VALUES ('Mr Roberts', 1, 4, 10),
      ('MC Boogie', 2, 3, 11),
      ('Singin Sam', 3, 1, 12),
      ('Avenger', 4, 2, 13)

      GO
      INSERT INTO Sales
      VALUES (10, 232 , 1, 2320),
      (11, 151, 2, 1510),
      (12, 129, 3, 1290),
      (13, 487, 4, 4870)
      GO
      INSERT INTO Production
      VALUES (10 , 500 , 10, 'Roberts 1', 1),
      (11, 700, 10, 'Time To Boogie', 2),
      (12, 250, 10, ' Dance Dance Dance', 3),
      (13, 1000, 10, 'The Revenge Of...', 4)
      GO
      INSERT INTO PersonalInfo
      VALUES ('Brad', 'Roberts' , ' 126 Somewhere Lane', 2048888888, 1),
      ('Doug', 'Boogie', '234 East bay', 9078789090, 2),
      ('Raymond', 'Disco', ' 123 Dancing Queen Blvd', 3038761234, 3),
      ('Ryan', 'Apple', '66 Berkshire Bay', 4549091212, 4)
      GO
      INSERT INTO PersonalInfo2
      VALUES ('Winnipeg', 'Ready Records', 'R2E9N8', 1, 1),
      ('Calgary','Set Records', 'R3J1M7', 2, 2),
      ('Texas', 'Go Records', '56555', 5, 3),
      ('London', 'Canadian Recordings','98887', 4, 4)
      GO
      ALTER TABLE Sales
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE
      GO
      --ALTER TABLE PersonalInfo
      --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      --GO
      ALTER TABLE PersonalInfo2
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE
      GO
      ALTER TABLE Sales
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      GO
      ALTER TABLE Production
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE



      GO
      UPDATE Artists
      SET ArtistName = 'Mr. Roberts'
      WHERE ArtistID = 1
      GO
      UPDATE Production
      SET Copies = 589, UnitPrice = 12
      WHERE AlbumID = 10
      GO
      UPDATE PersonalInfo
      SET HomeAddress = '345 Pritchard Rd', PhoneNumber = 2042341234
      WHERE ArtistID = 1
      GO
      CREATE INDEX index1
      ON dbo.Artists (ArtistID, AlbumID);
      GO
      CREATE INDEX index3
      ON Sales (AlbumID, ArtistID);
      GO
      CREATE INDEX index4
      ON Production (AlbumID, ArtistID);
      GO
      CREATE INDEX index5
      ON PersonalInfo2 (City, ArtistID);
      GO
      CREATE INDEX index6
      ON PersonalInfo (ArtistID);
      GO
      CREATE INDEX index7
      ON Artists (ArtistName, NumberOfAlbumTitles);
      GO
      CREATE INDEX index8
      ON Production (ArtistID, AlbumID, Copies, UnitPrice);
      GO
      CREATE INDEX index9
      ON Artists (AlbumID);
      GO
      CREATE INDEX index11
      ON Sales (ArtistID);
      GO
      CREATE INDEX index12
      ON Production (ArtistID)
      GO
      CREATE INDEX index13
      ON PersonalInfo2 (ArtistID);
      GO
      CREATE VIEW view1 AS
      SELECT FirstName, LastName, ArtistName, PhoneNumber, CopiesSoldYTD, SalesTotal
      FROM PersonalInfo
      INNER JOIN Sales
      ON PersonalInfo.ArtistID = Sales.ArtistID
      INNER JOIN Artists
      ON Sales.ArtistID = Artists.ArtistID
      GO
      CREATE PROCEDURE Proc1
      AS
      SELECT FirstName, LastName, Artists.ArtistName, NumberOfAlbumTitles, Artists.ArtistID, LabelName, PhoneNumber, City, UnitPrice, CopiesSoldYTD, SalesTotal
      FROM Artists
      LEFT JOIN PersonalInfo
      ON Artists.ArtistID = PersonalInfo.ArtistID
      LEFT JOIN PersonalInfo2
      ON PersonalInfo.ArtistID = PersonalInfo2.ArtistID
      INNER JOIN Production
      ON PersonalInfo2.ArtistID = Production.ArtistID
      INNER JOIN Sales
      ON Production.ArtistID = Sales.ArtistID
      GO
      CREATE PROCEDURE dbo.FinalProjectErrorHandling2
      AS
      BEGIN TRY
      SELECT CopiesSoldYTD, SalesTotal
      FROM Sales
      GROUP BY SalesTotal, CopiesSoldYTD
      HAVING CopiesSoldYTD > 200
      END TRY
      BEGIN CATCH
      WHILE(ERROR_NUMBER() > 0 )
      RAISERROR ('the error was handled',0,1) WITH NOWAIT
      SELECT
      ERROR_MESSAGE() AS ErrorMessage
      END CATCH
      GO









      share|improve this question















      Below is the code for the entire script. the only issue i have is with the FK below (see lines with -- in front) to remove it. if I add that I get an error using a DELETE, if I only apply the 4 constraints instead of 5 I can delete from the Artist table and it deletes from the other 3 as it should. but when I add PersonalInfo with an ON DELETE CASCADE suddenly I get an error, why? I plan to remove AlbumID from all tables so that they all rely on ArtistID to be identified. Allowing me to use the same column for FK as PK.



       CREATE TABLE Artists
      ( ArtistName varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, NumberOfAlbumTitles varchar(10) NOT NULL, AlbumID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE Sales
      ( AlbumID varchar(20) NOT NULL, CopiesSoldYTD varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL, SalesTotal varchar(20) NOT NULL,
      PRIMARY KEY (AlbumID))
      GO
      CREATE TABLE Production
      ( AlbumID varchar(20), Copies varchar(20) NOT NULL, UnitPrice varchar(10) NOT NULL, AlbumTitle varchar(20) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE PersonalInfo
      ( FirstName varchar(20) NOT NULL, LastName varchar(30) NOT NULL, HomeAddress varchar(30) NOT NULL, PhoneNumber varchar(10) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      CREATE TABLE PersonalInfo2
      ( City varchar(20) NOT NULL, LabelName varchar(20), PostalZip varchar(6) NOT NULL, Region varchar(30) NOT NULL, ArtistID varchar(20) NOT NULL,
      PRIMARY KEY (ArtistID))
      GO
      INSERT INTO Artists
      VALUES ('Mr Roberts', 1, 4, 10),
      ('MC Boogie', 2, 3, 11),
      ('Singin Sam', 3, 1, 12),
      ('Avenger', 4, 2, 13)

      GO
      INSERT INTO Sales
      VALUES (10, 232 , 1, 2320),
      (11, 151, 2, 1510),
      (12, 129, 3, 1290),
      (13, 487, 4, 4870)
      GO
      INSERT INTO Production
      VALUES (10 , 500 , 10, 'Roberts 1', 1),
      (11, 700, 10, 'Time To Boogie', 2),
      (12, 250, 10, ' Dance Dance Dance', 3),
      (13, 1000, 10, 'The Revenge Of...', 4)
      GO
      INSERT INTO PersonalInfo
      VALUES ('Brad', 'Roberts' , ' 126 Somewhere Lane', 2048888888, 1),
      ('Doug', 'Boogie', '234 East bay', 9078789090, 2),
      ('Raymond', 'Disco', ' 123 Dancing Queen Blvd', 3038761234, 3),
      ('Ryan', 'Apple', '66 Berkshire Bay', 4549091212, 4)
      GO
      INSERT INTO PersonalInfo2
      VALUES ('Winnipeg', 'Ready Records', 'R2E9N8', 1, 1),
      ('Calgary','Set Records', 'R3J1M7', 2, 2),
      ('Texas', 'Go Records', '56555', 5, 3),
      ('London', 'Canadian Recordings','98887', 4, 4)
      GO
      ALTER TABLE Sales
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE
      GO
      --ALTER TABLE PersonalInfo
      --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      --GO
      ALTER TABLE PersonalInfo2
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE
      GO
      ALTER TABLE Sales
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      GO
      ALTER TABLE Production
      ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
      ON DELETE CASCADE



      GO
      UPDATE Artists
      SET ArtistName = 'Mr. Roberts'
      WHERE ArtistID = 1
      GO
      UPDATE Production
      SET Copies = 589, UnitPrice = 12
      WHERE AlbumID = 10
      GO
      UPDATE PersonalInfo
      SET HomeAddress = '345 Pritchard Rd', PhoneNumber = 2042341234
      WHERE ArtistID = 1
      GO
      CREATE INDEX index1
      ON dbo.Artists (ArtistID, AlbumID);
      GO
      CREATE INDEX index3
      ON Sales (AlbumID, ArtistID);
      GO
      CREATE INDEX index4
      ON Production (AlbumID, ArtistID);
      GO
      CREATE INDEX index5
      ON PersonalInfo2 (City, ArtistID);
      GO
      CREATE INDEX index6
      ON PersonalInfo (ArtistID);
      GO
      CREATE INDEX index7
      ON Artists (ArtistName, NumberOfAlbumTitles);
      GO
      CREATE INDEX index8
      ON Production (ArtistID, AlbumID, Copies, UnitPrice);
      GO
      CREATE INDEX index9
      ON Artists (AlbumID);
      GO
      CREATE INDEX index11
      ON Sales (ArtistID);
      GO
      CREATE INDEX index12
      ON Production (ArtistID)
      GO
      CREATE INDEX index13
      ON PersonalInfo2 (ArtistID);
      GO
      CREATE VIEW view1 AS
      SELECT FirstName, LastName, ArtistName, PhoneNumber, CopiesSoldYTD, SalesTotal
      FROM PersonalInfo
      INNER JOIN Sales
      ON PersonalInfo.ArtistID = Sales.ArtistID
      INNER JOIN Artists
      ON Sales.ArtistID = Artists.ArtistID
      GO
      CREATE PROCEDURE Proc1
      AS
      SELECT FirstName, LastName, Artists.ArtistName, NumberOfAlbumTitles, Artists.ArtistID, LabelName, PhoneNumber, City, UnitPrice, CopiesSoldYTD, SalesTotal
      FROM Artists
      LEFT JOIN PersonalInfo
      ON Artists.ArtistID = PersonalInfo.ArtistID
      LEFT JOIN PersonalInfo2
      ON PersonalInfo.ArtistID = PersonalInfo2.ArtistID
      INNER JOIN Production
      ON PersonalInfo2.ArtistID = Production.ArtistID
      INNER JOIN Sales
      ON Production.ArtistID = Sales.ArtistID
      GO
      CREATE PROCEDURE dbo.FinalProjectErrorHandling2
      AS
      BEGIN TRY
      SELECT CopiesSoldYTD, SalesTotal
      FROM Sales
      GROUP BY SalesTotal, CopiesSoldYTD
      HAVING CopiesSoldYTD > 200
      END TRY
      BEGIN CATCH
      WHILE(ERROR_NUMBER() > 0 )
      RAISERROR ('the error was handled',0,1) WITH NOWAIT
      SELECT
      ERROR_MESSAGE() AS ErrorMessage
      END CATCH
      GO






      sql sql-server






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 at 17:50

























      asked Nov 19 at 17:29









      Steve R Laminger

      25




      25
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          Because you are missing "ON DELETE CASCADE" here



          --ALTER TABLE PersonalInfo
          --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID) <---- Missing on delete cascade
          --GO


          Once you add that



          ALTER TABLE PersonalInfo
          ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
          ON DELETE CASCADE
          GO


          it works as required






          share|improve this answer





















          • (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
            – Steve R Laminger
            Nov 19 at 18:20










          • glad to help...
            – Karthik Ganesan
            Nov 19 at 18:21











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53379829%2fsql-server-2017-on-delete-cascade-question%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          Because you are missing "ON DELETE CASCADE" here



          --ALTER TABLE PersonalInfo
          --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID) <---- Missing on delete cascade
          --GO


          Once you add that



          ALTER TABLE PersonalInfo
          ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
          ON DELETE CASCADE
          GO


          it works as required






          share|improve this answer





















          • (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
            – Steve R Laminger
            Nov 19 at 18:20










          • glad to help...
            – Karthik Ganesan
            Nov 19 at 18:21















          up vote
          1
          down vote













          Because you are missing "ON DELETE CASCADE" here



          --ALTER TABLE PersonalInfo
          --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID) <---- Missing on delete cascade
          --GO


          Once you add that



          ALTER TABLE PersonalInfo
          ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
          ON DELETE CASCADE
          GO


          it works as required






          share|improve this answer





















          • (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
            – Steve R Laminger
            Nov 19 at 18:20










          • glad to help...
            – Karthik Ganesan
            Nov 19 at 18:21













          up vote
          1
          down vote










          up vote
          1
          down vote









          Because you are missing "ON DELETE CASCADE" here



          --ALTER TABLE PersonalInfo
          --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID) <---- Missing on delete cascade
          --GO


          Once you add that



          ALTER TABLE PersonalInfo
          ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
          ON DELETE CASCADE
          GO


          it works as required






          share|improve this answer












          Because you are missing "ON DELETE CASCADE" here



          --ALTER TABLE PersonalInfo
          --ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID) <---- Missing on delete cascade
          --GO


          Once you add that



          ALTER TABLE PersonalInfo
          ADD FOREIGN KEY (ArtistID) REFERENCES Artists(ArtistID)
          ON DELETE CASCADE
          GO


          it works as required







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 19 at 18:07









          Karthik Ganesan

          3,12611736




          3,12611736












          • (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
            – Steve R Laminger
            Nov 19 at 18:20










          • glad to help...
            – Karthik Ganesan
            Nov 19 at 18:21


















          • (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
            – Steve R Laminger
            Nov 19 at 18:20










          • glad to help...
            – Karthik Ganesan
            Nov 19 at 18:21
















          (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
          – Steve R Laminger
          Nov 19 at 18:20




          (facepalm) lol ive been doing so many lines of SQL over the last few days and staring at screens and screens I somehow completely missed that.... lol thank you
          – Steve R Laminger
          Nov 19 at 18:20












          glad to help...
          – Karthik Ganesan
          Nov 19 at 18:21




          glad to help...
          – Karthik Ganesan
          Nov 19 at 18:21


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53379829%2fsql-server-2017-on-delete-cascade-question%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          If I really need a card on my start hand, how many mulligans make sense? [duplicate]

          Alcedinidae

          Can an atomic nucleus contain both particles and antiparticles? [duplicate]