sqlserver2005 now version more, there are express version, there are enterprise development version, etc., I currently use the Express version,
Occupy system resources or very few, not like the internet said, a run development version, eat more than 400 m memory, for our absolute big
Most people, in order to see the new features of sqlserver2005, there is no need to install a formal development version, the Express version of the small, and it
The function is enough for personal use.
After loading sqlserver2005 (Express Edition), you also need to go to the next manage manager for ease of management, Microsoft's official website has
, after the installation of the Manage manager, in the program to connect sqlserver2005, the following points are to be noted.
1. Open the Sql2005 remote connection function, the opening method is as follows,
The Configuration tool->sql the server perimeter configuration-> service and the perimeter configuration of the connection-> open the database Engine node under the MSSQLSERVER node, select Remote Connection, and then recommend "use tcp/simultaneously" IP and Named pipes ", when you are sure, restart the database service.
2. The login settings are changed to, SQL Server and Windows authentication are selected at the same time, as set out below:
Manage Manager->windows authentication (first time in Windows),-> Object Explorer Select your data server--right > Properties > Security>sql Server and Windows authentication methods are selected.
3: Set up a SQL Server user name and password, set the following:
Manage manager->windows authentication>new query>sp_password null, ' sa123456 ', ' sa '
This sets a user named SA, the password is: sa123456 users, the next time you log in, you can use SQL Server method,
User name is SA, password is: sa123456 user into the database.
4: After the above three steps, so write the connection string can be successfully entered the database,
(Server=.\\sqlexpress;uid=sa;pwd=sa123456;database=master ");