I have the following setup:

CREATE TABLE dbo.Licenses
(
 Id    int IDENTITY(1,1) PRIMARY KEY,
 Name  varchar(100),
 RUser nvarchar(128) DEFAULT USER_NAME()
)

GO

CREATE VIEW dbo.rLicenses
AS
SELECT Name
FROM   dbo.Licenses
WHERE  RUser = USER_NAME()

GO

When I try to insert data using the view...

INSERT INTO dbo.rLicenses VALUES ('test')

an error arises:

Cannot insert the value NULL into column Id, table master.dbo.Licenses; column does not allow nulls. INSERT fails.

Why doesn't the auto increment of the identity column work when trying to insert using the view and how can I fix it?

Scenario is: The different users of the database should only be able to work with their own rows in that table. Therefore I am trying to use the view as a kind of security by checking the username. Is there any better solution?

link|improve this question
Why aren;t you directly inserting into that table? I never insert to views because they have wierd quirly rules and are more of a pain than a direct insert. – HLGEM Nov 16 '10 at 18:38
The different users of the database should only be able to work with their own rows in that table. Therefore I am trying to use the view as a kind of security by checking the username. Is there any better solution? – Keeks Nov 16 '10 at 18:45
feedback

4 Answers

What about naming your column?

INSERT INTO dbo.rLicenses (name) VALUES ('test')

It's been years since I tried updating via a view so YMMV as HLGEM mentioned.

I would consider an "INSTEAD OF" trigger on the view to allow a simple INSERT dbo.Licenses (ie the table) in the trigger

link|improve this answer
feedback

Looks like you are running afoul of this rule for updating views from Books Online: "INSERT statements must specify values for any columns in the underlying table that do not allow null values and have no DEFAULT definitions."

link|improve this answer
Ok, since the behavior is intentional do you have any idea how I could solve my problem? – Keeks Nov 16 '10 at 18:46
1  
Insert directly to the underlying table – HLGEM Nov 16 '10 at 19:09
feedback

What is your Compatibility Level set to? If it's 90, it's working as designed. See the following article:

http://jagbarcelo.blogspot.com/2006/09/identity-columns-in-view-treated-as.html

In any case, why not just insert directly into the table?

link|improve this answer
feedback

Inserting 'test' to name will lead to inserting NULL values to other columns of the base table which wont be correct as Id is a PRIMARY KEY and it cannot have NULL value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.