February 27, 2011 at 10:13 am
Hi,
First i would like to introduce myself i am Ehsan and just new to sql server i have few questions
1. i have two computers one is desktop and one is laptop bot running windows 7
2. i want to make my desktop a server with all the database files on it
3.i want to work on laptop and get access from the desktop
Please do not mind to answer these questions or if i can get help step by step it would be more better.
thanks
Ehsan
February 27, 2011 at 10:32 am
You haven't asked a question. You made three statements.
You can install SQL Server on one, and the client tools on the other machine and have them work. You will have to be sure the firewalls are open and remote access is enabled inside SQL Server through the sp_configure setting.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'remote access', 1;
GO
RECONFIGURE;
GO
February 27, 2011 at 1:25 pm
I'll also remind folks that SQL Server Standard Edition and Enterprise Editions require Windows Server, as well. SQL Server Express and Developer's Editions will install on the desktop edition of Windows. Just keep in mind that the Developer's Edition has a very strict licensing agreement.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply