
Accessing SQL Server Remote
If you have a dedicated (physical or virtual) machine with i7MEDIA and you have SQL Server installed on the server, you can connect to SQL Server remotely by following these instructions.
Prerequisites
- SQL Server Management Studio installed on your desktop computer.
Method 1 (Using SQL Server Authentication)
This is the simplest method but may not be desired if you need to keep SQL Server Authentication turned off or you do not wish to have multiple accounts for accessing your server (windows account, sql account).
Prerequisites
- SQL User created on the SQL Server you wish to connect to.
Steps
Method 2 (Using Windows Authentication)
This method is best if you want to keep SQL Server Authentication disabled or you do not want to have multiple accounts for connecting to your server.
- Windows User on your server with access to SQL Server installed on your server.
Example:
- runas /netonly /user:AcmeWeb01\JohnDoeAdmin "C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\Ssms.exe"
Note: You can create a shortcut to the full runas command so you don't have to remember the syntax of the command. To do this, simply right-click on your desktop, select New > Shortcut and enter the runas command as in the example above for the location. Give your shortcut a meaningful name and you're good to go!