![]() | |
![]() |
| | Thread Tools | Display Modes |
#11
| |||
| |||
|
#12
| |||
| |||
|
|
Mark, Thank you for your reply! This is a partial response - I'm having a busy day and won't have time to install SSMS on a different computer until later. What I tried was take the test database on the server offline, copy the .mdf and .ldf files to the instance of SQL Server 2005 Express that runs on my local PC, and attach them. Using the same instance of SSMS, I was able to open my test table in this copy of the database and add or edit records without any errors. @@Version on my local copy of SQL Server Express returns Microsoft SQL Server 2005 - 9.00.4035.00 (Intel X86) Nov 24 2008 13:01:59 Copyright (c) 1988-2005 Microsoft Corporation Express Edition on Windows NT 5.1 (Build 2600: Service Pack 3) Using T-SQL queries to add or edit records to the test table on the server also works fine - unfortunately for the data entry work I do, writing queries takes a lot more time than simply opening the table and typing. I will post an update when I have installed SSMS on a different computer and tried updating the table from there. "Mark Han[MSFT]" wrote: Hi Lena, Thank you for the update. Based on the current situation, the issue might be related to the SSMS. So please do the following to narrow down the issue. 1) please use T-SQL to insert/update the date . there are several articles to share with you. update: http://msdn.microsoft.com/en-us/libr...3(SQL.90).aspx insert: http://msdn.microsoft.com/en-us/libr...5(SQL.90).aspx 2) please try to involve another machine, install SSMS and try to re-produce the issue Besides, I followed the steps posted and the issue doesn't happen. So the issue you meet should be s special one. I look forward to your update. Best regards, Mark Han Microsoft Online Community Support ================================================== ======= Delighting our customers is our #1 priority. We welcome your comments and suggestions about how we can improve the support we provide to you. Please feel free to let my manager know what you think of the level of service provided. You can send feedback directly to my manager at: msdnmg (AT) microsoft (DOT) com. ================================================== ======= This posting is provided "AS IS" with no warranties, and confers no rights. ================================================== ======= |
#13
| |||
| |||
|
#14
| |||
| |||
|
|
Hi ESM, Thank you for the posting. According to your description, the issue you meet is different with Lena. Based on my experience, the issue you meet is by-design and the waring is just a kind remind, you can savely ingore it. I meet this kind of issue before. Thank you again. Best regards, Mark Han Microsoft Online Community Support ================================================== ======= Delighting our customers is our #1 priority. We welcome your comments and suggestions about how we can improve the support we provide to you. Please feel free to let my manager know what you think of the level of service provided. You can send feedback directly to my manager at: msdnmg (AT) microsoft (DOT) com. ================================================== ======= This posting is provided "AS IS" with no warranties, and confers no rights. ================================================== ======= |
#15
| |||
| |||
|
#16
| |||
| |||
|
#17
| |||
| |||
|
#18
| |||
| |||
|
|
I just wanted to add to this conversation thread. I have the same problem and I didn't have it last week. I have run SSMS on a workstation and on the server itself and have received the following error when inserting/updating a row: The updated row has changed or has been deleted since data was last retrieved. I was able to modify rows in all of the tables before and now I can't. After reading through the thread, I have a table with the following definition: CREATE TABLE [dbo].[tmpMassEmail]( [id] [int] IDENTITY(1,1) NOT NULL, [emailto] [varchar](200) NOT NULL, [emailfrom] [varchar](200) NULL, [employer_id] [int] NULL, [email_type] [varchar](50) NULL, CONSTRAINT [PK_tmpMassEmail] PRIMARY KEY CLUSTERED ( [id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] Notice: 1) It has a primary key 2) There are no Text or NText fields When I capture the info in SQL Profiler, I get the following: exec sp_executesql N'INSERT INTO tmpMassEmail(emailto) VALUES (@emailto)',N'@emailto nvarchar(13)',@emailto=N'jack (AT) jack (DOT) com' When I copy that script into a blank query window, it works. Add me to the list of people who think that the tool should work as if it were generating the correct sql behind the scenes like I typed it in. If I wanted a SQL database that I had to write manual scripts for every change I made, I would use Oracle. Let's nail this one down and get it fixed! Let me know if I can help... Cheers! Lonnie |
#19
| |||
| |||
|
#20
| |||
| |||
|
![]() |
| Thread Tools | |
| Display Modes | |
| |