hi to all ,
today i face a problem that is at the time of installation of slq server 2005 i have choosen window authentication except
Mixed Mode (Windows Authentication and SQL Server Authentication)", and now i want to change it because when i create any new
login and try to connect with the new login credentials it will show error that "user is not associated with trusted sql
server connection" and this error due to i have choosen window authentication . so i have to change this mode in sql server.
for this it is simple connect ur server with window aunthetication and right click on server name in object explorer and
choose properties -> a window will open and in side pane choose security page there is a option to change mode , now press ok
now u can login with sql server authentication mode.
Showing posts with label installation of slq server 2005. Show all posts
Showing posts with label installation of slq server 2005. Show all posts
Subscribe to:
Posts (Atom)
ASP.NET Core
Certainly! Here are 10 advanced .NET Core interview questions covering various topics: 1. **ASP.NET Core Middleware Pipeline**: Explain the...
-
The error message you encountered ("DeleteService FAILED 1072: The specified service has been marked for deletion") indicates tha...
-
replace html of a div using jquery this is simple . just use .html() method of jquery to set new html for a div . $ ( "#divID...
-
declare @ProductIds nvarchar(50)='18,19' SELECT * FROM products Where (',' + @ProductIds +',' LIKE '%,' ...