0

here is screenshot from my azure sql database. I would like to remove user Nazerke. I've deleted the row, and when I wanted to save it, it gives me " Incorrect syntax near WHERE" as you can see on the top of database. How can I delete the user and what could be possible solution?enter image description here

Nazerke
  • 2,098
  • 7
  • 37
  • 57

2 Answers2

1

It looks like the password contains weird characters, maybe the Silverlight application has issues supporting these (don't know for sure). Could you try to delete an other record, like the user with username JDuck?

Update: The actual solution can be found in this question: how to change permission for the service account in azure's sql management portal

Community
  • 1
  • 1
Sandrino Di Mattia
  • 24,739
  • 2
  • 60
  • 65
0

This is just a user defined table that you created? Just delete the row: delete from [dbo].[Users] where Guid = '<guid>'

levelnis
  • 7,665
  • 6
  • 37
  • 61