delete from table then insert - using a view

  • hi Team,

    How to create a view with below logic,

    -- want to delete from unify table before insert.

    DELETE FROM dbo.Unify

    GO

    INSERT INTO dbo.unify (PS_code, PS_Name)

    SELECT PS_code, PS_Name FROM [dbo].[Unify_HHT]

  • Minnu (11/24/2015)


    hi Team,

    How to create a view with below logic,

    -- want to delete from unify table before insert.

    DELETE FROM dbo.Unify

    GO

    INSERT INTO dbo.unify (PS_code, PS_Name)

    SELECT PS_code, PS_Name FROM [dbo].[Unify_HHT]

    Views do not contain DELETEs and INSERTs, merely SELECTs.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • You can delete or insert data by referencing a view, but the view itself only contains SELECT.

    https://msdn.microsoft.com/en-GB/library/ms180800(v=sql.105).aspx

  • Well, in the spirit of answering the question asked, it'd be pretty easy to create a view that looks the same as the table with schemabinding, and put an INSTEAD OF (insert,update,delete) trigger on it that does what you want. I'll leave it for you to google SQL SERVER INSTEAD OF if that's really what you want to do but why not this instead?

    INSERT INTO dbo.unify (PS_code, PS_Name)

    SELECT PS_code, PS_Name FROM [dbo].[Unify_HHT] a

    where not exists

    ( select 1 from dbo.unify b where b.ps_code = a.ps_code and b.ps_name = a.ps_name)

  • Minnu (11/24/2015)


    hi Team,

    How to create a view with below logic,

    -- want to delete from unify table before insert.

    DELETE FROM dbo.Unify

    GO

    INSERT INTO dbo.unify (PS_code, PS_Name)

    SELECT PS_code, PS_Name FROM [dbo].[Unify_HHT]

    As others have pointed out, a view is the wrong object type for this. There's a great reminder in the name "view". That's all you get to do. The correct object type for this operation is not a view, but a stored procedure. They're for doing stuff, not just looking at stuff.

    “Write the query the simplest way. If through testing it becomes clear that the performance is inadequate, consider alternative query forms.” - Gail Shaw

    For fast, accurate and documented assistance in answering your questions, please read this article.
    Understanding and using APPLY, (I) and (II) Paul White
    Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply