 |
|
IDENTITY_INSERT is set to OFF. ใน sql server มีปัญหาแก้ไขยังไง ครับ |
|
 |
|
|
 |
 |
|
ตอนนี้ผมเพิ่งหัดเขียน asp.net (C#) โดยติดต่อกับ Sql server โดยใช้ SqlDataSource
โดยผมได้ทำการใช้ wizard ในการ Insert ของ Visual Web Development แล้ว พอทำการ Insert เข้าไป ปรากฎว่าได้ผลลัพธ์ ตามด้านล่างนี้ครับ
โดยผมไปดูที่ sql server ของผมนั้น ก็ได้ทำการ Set ค่าของ
Identity Specification = Yes
(Is Identity) = Yes
แล้วครับ
รบกวนผู้รู้แนะนำผมด้วยนะครับ
----------------------------------------------------------------------
Server Error in '/' Application.
Cannot insert explicit value for identity column in table 'Reply' when IDENTITY_INSERT is set to OFF.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Cannot insert explicit value for identity column in table 'Reply' when IDENTITY_INSERT is set to OFF.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[OleDbException (0x80040e14): Cannot insert explicit value for identity column in table 'Reply' when IDENTITY_INSERT is set to OFF.]
System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method) +1209
System.Data.OleDb.OleDbCommand.ExecuteNonQuery() +135
System.Web.UI.WebControls.SqlDataSourceView.ExecuteDbCommand(DbCommand command, DataSourceOperation operation) +754
System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) +214
System.Web.UI.WebControls.FormView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +511
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +50
System.Web.UI.WebControls.FormViewRow.OnBubbleEvent(Object source, EventArgs e) +113
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +50
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +32
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3087
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3601
Tag : - - - -
|
|
 |
 |
 |
 |
Date :
2010-01-01 06:47:11 |
By :
pyayam |
View :
13102 |
Reply :
6 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอดู query script ตอน insert หน่อย column ที่เป็น identity ด้วยชื่ออะไร
|
 |
 |
 |
 |
Date :
2010-01-01 07:03:08 |
By :
ผ่านมา |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
scripts ตามนี้ครับ (โดย ผมได้ใช้ wizard ระบบได้ generate มาให้นะครับ)
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:AzureConnection %>"
ProviderName="<%$ ConnectionStrings:AzureConnection.ProviderName %>"
SelectCommand="SELECT [ReplyID], [Detail], [ReplyName] FROM [Reply]"
DeleteCommand="DELETE FROM [Reply] WHERE [ReplyID] = ?"
InsertCommand="INSERT INTO [Reply] ([ReplyID], [Detail], [ReplyName]) VALUES (?, ?, ?)"
UpdateCommand="UPDATE [Reply] SET [Detail] = ?, [ReplyName] = ? WHERE [ReplyID] = ?">
<DeleteParameters>
<asp:Parameter Name="ReplyID" Type="Int32" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="Detail" Type="String" />
<asp:Parameter Name="ReplyName" Type="String" />
<asp:Parameter Name="ReplyID" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="ReplyID" Type="Int32" />
<asp:Parameter Name="Detail" Type="String" />
<asp:Parameter Name="ReplyName" Type="String" />
</InsertParameters>
</asp:SqlDataSource>
<asp:FormView ID="FormView2" runat="server" DataKeyNames="ReplyID"
DataSourceID="SqlDataSource2" DefaultMode='Insert'>
<EditItemTemplate>
ReplyID:
<asp:Label ID="ReplyIDLabel1" runat="server" Text='<%# Eval("ReplyID") %>' />
<br />
Detail:
<asp:TextBox ID="DetailTextBox" runat="server" Text='<%# Bind("Detail") %>' />
<br />
ReplyName:
<asp:TextBox ID="ReplyNameTextBox" runat="server"
Text='<%# Bind("ReplyName") %>' />
<br />
<asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True"
CommandName="Update" Text="Update" />
<asp:LinkButton ID="UpdateCancelButton" runat="server"
CausesValidation="False" CommandName="Cancel" Text="Cancel" />
</EditItemTemplate>
<InsertItemTemplate>
Detail:
<asp:TextBox ID="DetailTextBox" runat="server" Text='<%# Bind("Detail") %>' />
<br />
ReplyName:
<asp:TextBox ID="ReplyNameTextBox" runat="server"
Text='<%# Bind("ReplyName") %>' />
<br />
<asp:LinkButton ID="InsertButton" runat="server" CausesValidation="True"
CommandName="Insert" Text="Insert" />
<asp:LinkButton ID="InsertCancelButton" runat="server"
CausesValidation="False" CommandName="Cancel" Text="Cancel" />
</InsertItemTemplate>
<ItemTemplate>
ReplyID:
<asp:Label ID="ReplyIDLabel" runat="server" Text='<%# Eval("ReplyID") %>' />
<br />
Detail:
<asp:Label ID="DetailLabel" runat="server" Text='<%# Bind("Detail") %>' />
<br />
ReplyName:
<asp:Label ID="ReplyNameLabel" runat="server" Text='<%# Bind("ReplyName") %>' />
<br />
</ItemTemplate>
</asp:FormView>
ผมได้ไปอ่านจากที่อื่น ๆ เค้าบอกว่า ต้องทำแบบนี้ด้วยนะครับ
SET IDENTITY_INSERT [Table_Name] ON
เช่น
INSERT INTO dbo.Yaks (YakID, YakName) Values(1, 'Mac the Yak')
SET IDENTITY_INSERT Yaks ON
แต่ผมไม่รู้จะเขียน query ออกมายังไง ใน c#
|
 |
 |
 |
 |
Date :
2010-01-01 09:13:39 |
By :
pyayam |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
InsertCommand="INSERT INTO [Reply] ([Detail], [ReplyName]) VALUES (?, ?)"
ReplyID คือ Identity ใช่ใหม่ ไม่ต้องใส่ค่าให้มัน เดี๋ยวมันเพิ่มเอง
|
 |
 |
 |
 |
Date :
2010-01-01 10:04:39 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อย่างที่คุณ PlaKrim บอกเลยครับ column ที่เป็น identity ไม่ต้องใส่อะไรให้มันครับ เดี่ยวเพิ่มเอง
ให้ replyID เป็น identity column
insert into table_name(replyby,replyDate) values('ช้านนนเอง',now();)
|
 |
 |
 |
 |
Date :
2010-01-01 10:34:46 |
By :
salapao_codeman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
- ลืมบอกไปครับ ตอนนี้ติดต่อกับ windows azure
- อีก project หนึ่ง ผมใช้ source code ในการ Insert เหมือนกัน สามารถใช้งานได้ สามารถใช้งานได้ แต่ว่ามาใช้กับ windows azure แล้วใช้แล้วเกิดปัญหาตามรายละเอียดด้านล่างนี้ครับ
ผมลองทำเป็น
InsertCommand="INSERT INTO [Reply] ([Detail], [ReplyName]) VALUES (?, ?)"
ปรากฏว่าขึ้นข้อความนี้แทนครับ
Server Error in '/' Application.
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[OleDbException (0x80040e21): Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.]
[InvalidOperationException: Command parameter[2] '' is invalid.
]
System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr) +59
System.Data.OleDb.OleDbCommand.ExecuteCommandTextForMultpleResults(tagDBPARAMS dbParams, Object& executeResult) +159
System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult) +217
System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method) +175
System.Data.OleDb.OleDbCommand.ExecuteNonQuery() +135
System.Web.UI.WebControls.SqlDataSourceView.ExecuteDbCommand(DbCommand command, DataSourceOperation operation) +754
System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) +214
System.Web.UI.WebControls.FormView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +511
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +50
System.Web.UI.WebControls.FormViewRow.OnBubbleEvent(Object source, EventArgs e) +113
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +50
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +32
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3087
Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3601
โดยโครงสร้างฐานข้อมูลผมเป็นแบบนี้ครับ
USE [AzureCloud]
GO
/****** Object: Table [dbo].[Reply] Script Date: 01/01/2010 20:02:07 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Reply](
[ReplyID] [int] IDENTITY(1,1) NOT NULL,
[PostID] [int] NULL,
[Detail] [nvarchar](1000) NULL,
[ReplyName] [nvarchar](50) NULL,
[ReplyDate] [datetime] NULL,
CONSTRAINT [PK_Reply] PRIMARY KEY CLUSTERED
(
[ReplyID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Go to : SQL AUTO_INCREMENT/IDENTITY For SQL SERVER
|
 |
 |
 |
 |
Date :
2010-01-01 20:02:10 |
By :
pyayam |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
จากที่ลองหาดู ลักษณะเหมือน connect database ไม่ได้อ่ะครับ ไม่แน่ใจลองเขียน code ง่ายๆ ติดต่อ database แล้วแสดงข้อมูลออกมาดูอย่างเดียวได้หรือเปล่า
กับอีกอย่างรบกวนใส่ เพื่อจับดู error จริงๆ ของมันดูหน่อยครับ
try
catch
end try
ลองค้นดูแล้ว Windows Azure นี่ SQL มันก็ไม่ใช่ SQLServer ด้วยนี่ครับ ไม่แน่ใจต้องมี driver พิเศษลงเพิ่มก่อนหรือเปล่า แล้ว connection string ก็ต้องเปลี่ยนไปใช้ตัวนั้นแทน
|
 |
 |
 |
 |
Date :
2010-01-01 22:31:51 |
By :
salapao_codeman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|