Lo mismo me pasa cuando instalo sql server standart y no le pongo modo mixto, solo con usuario de windows. Lo que hice fue desinstalar y volver a instalar. Pero debe de haber alguna manera de habilitar the sql server authentication

| ||||
Re: Sobre modo mixto en sql server express La cuenta sa esta deshabilitada por default para habilitarla...
Código:
Para habilitar el SQL Authentication :ALTER LOGIN sa Enable;
Código:
y por si acaso, para habilitar el modo de conexion remoto....Enabling SQL Authentication STEP1: You need to enable SQL Authentication on the machine. This is complex in SQLExpress and you need to edit the registry. Copy the following lines of text onto a Notepad and save it with extention .REG. -------------COPY BELOW--------------------------------- Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\MSSQLServer] "LoginMode"=dword:00000002 -------------COPY TILL THIS--------------------------------- STEP2: Double Click on the .REG file to change the registry. This change the Authentication Mode to enable SQL Authentication. STEP3: Restart the SQL Server Express Service or reboot the machine for registry change to take effect. Configuring SQL Server Express 2005 for Remote Access ![]()
__________________ La sencillez y naturalidad son el supremo y último fin de la cultura... -- MCTS : SQL Server 2008, .NET Framework 3.5, ASP.NET Applications. |
| ||||
Re: Sobre modo mixto en sql server express Gracias Andresillo... esas 4 palabras eran las que necesitaba. Lo que hice fue desinstalar el express, conseguir el standart e instalarlo ![]() ![]() eran 4 palabras ![]() |