When I was taking class in college, I only had to download Management Studio and connect a SQL server from the university. Howevere, I'm no longer in that class and would like to practice on my local machine. I've installed SQL Server replication on my local machine, but I don't know how to access it using Management Studio. Please help.
|
feedback
|
|
It sounds like you've installed SQL Express under the default instance (SQLEXPRESS). To connect via SSMS, you should use the machine name (or localhost, if it is the local machine), backslash, and the instance name as the server name. So in your case, try entering localhost\SQLEXPRESS. As for the authentication, unless you specifically enabled Mixed Mode Authentication during the installation, you only have Windows Authentication available. You likely added the account you used during the installation as an administrator, so you should be able to run SSMS as that user, and select Windows Authentication to access your sever. | |||||
feedback
|
|
Replication is found in the main tree of SSMS. You will need 2 separate instances installed on the machine to be able to replicate between them. With SQL Express, you can only be a subscriber. To create a publication, you need to install SQL standard, workgroup, enterprise, etc. | |||||||
feedback
|