954,301 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Must install SQL server to run an Application?

I've successfully developed a software using VB.Net and SQL server 2005. i have this problem. when i create exe, it can use to my computer because of SQL server is already installed in my computer. but if i want to use that software in some other computer, must i install SQL server 2005 to that computer? Is there any option to run my software without installing SQL server to that computer?

Please Help Me....

Prasad.weer
Junior Poster in Training
52 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
 

If you allow your SQL server to accept remote connections, then you can query the SQL database from anywhere on your network. By default, your SQL server will listen on port 1433.

JorgeM
Posting Pro
571 posts since Dec 2011
Reputation Points: 51
Solved Threads: 55
Infraction Points: 5
 

First Of Go SQL SERVER CONFIGURATION MANAGER In The PC Where SQL Server Is INSTALLED.

THEN AS IT'S A EXPRESS EDITION , TCP IP WILL BE DIASBLED, YOU MUST ENABLE IT.

THEN USING THE WINDOWS FIREWALL , UNBLOCK PORT 1433 FOR INCOMING CONNECTIONS.

ASSIGN A STATIC IP : 10.20.30.40 in my case

YOUR Connection string :

server=10.20.30.40,1433;database=your_db_name;user=sa;pwd=*****;multipleactiveresultsets=true
Pri Bhowmik
Newbie Poster
17 posts since Jan 2012
Reputation Points: 8
Solved Threads: 4
 

All you have to do is to make sure that your server is in the lan and it is visible

breakfast
Newbie Poster
2 posts since Jan 2012
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: