473,406 Members | 2,633 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Connect to SQL Server

Hello.

Can I connect to a SQL server through Remote Desktop?

If so, could someone point me to somwhere to find the information I need to
achieve this. To date, I have only run databases on a stand alone computer
so this would be a new venture for me.

I can log on to the remote computer and navigate to the database files which
are on a dedicated drive 'E'

Thank you very much.
PeterW

Aug 15 '08 #1
9 2035
On Fri, 15 Aug 2008 20:18:24 +0100, "PeterW" <pw****@btinternet.com>
wrote:

No.
However you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly securing
such access) so you can use it.

-Tom.
Microsoft Access MVP

>Hello.

Can I connect to a SQL server through Remote Desktop?

If so, could someone point me to somwhere to find the information I need to
achieve this. To date, I have only run databases on a stand alone computer
so this would be a new venture for me.

I can log on to the remote computer and navigate to the database files which
are on a dedicated drive 'E'

Thank you very much.
PeterW
Aug 16 '08 #2
1433 is a the default port for SQL-Server. This may make it a target
for bad nerds or evil nerdettes. Another port can be used. The
connection string can deal with this as
SERVER NAME,1433
or
SERVER NAME,5027

On Aug 15, 10:44*pm, Tom van Stiphout <no.spam.tom7...@cox.netwrote:
On Fri, 15 Aug 2008 20:18:24 +0100, "PeterW" <pwo...@btinternet.com>
wrote:

No.
However you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly securing
such access) so you can use it.

-Tom.
Microsoft Access MVP
Hello.
Can I connect to a SQL server through Remote Desktop?
If so, could someone point me to somwhere to find the information I needto
achieve this. To date, I have only run databases on a stand alone computer
so this would be a new venture for me.
I can log on to the remote computer and navigate to the database files which
are on a dedicated drive 'E'
Thank you very much.
PeterW
Aug 16 '08 #3
Tom van Stiphout <no*************@cox.netwrote in
news:lk********************************@4ax.com:
you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly
securing such access) so you can use it.
No competent sysadmin is going to do that.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Aug 16 '08 #4
Thousands do. Almost two years ago I created a blank internet enabled
(port 1433) MS-SQL db and invited anyone who claimed this was insecure
to login and create a table named after himself or herself. So far
there none of these tables has been created.
Why would we think these are insecure? We need a login, username and
password. How is this different than hacking into a site, say
bway.com?
Almost all server sites will shut down anyone who tries a brute force
attack. So unless one can guess the address of the server and that my
login is q30f-!!\o` i9&æú and my password is A£œpi97Q`~pç one will not
be able to connect.
Very sophisticated intrusion prevention devices such as that described
at http://www.tippingpoint.com/products_ips.html protect these sites
from random poking around.

On Aug 16, 5:40*pm, "David W. Fenton" <XXXuse...@dfenton.com.invalid>
wrote:
Tom van Stiphout <no.spam.tom7...@cox.netwrote innews:lk********************************@4ax.com:
you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly
securing such access) so you can use it.

No competent sysadmin is going to do that.

--
David W. Fenton * * * * * * * * *http://www.dfenton.com/
usenet at dfenton dot com * *http://www.dfenton.com/DFA/
Aug 16 '08 #5
On 16 Aug 2008 21:40:30 GMT, "David W. Fenton"
<XX*******@dfenton.com.invalidwrote:

Many ISPs do just that.
-Tom.

>Tom van Stiphout <no*************@cox.netwrote in
news:lk********************************@4ax.com :
>you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly
securing such access) so you can use it.

No competent sysadmin is going to do that.
Aug 19 '08 #6
I saw a conference some years ago (maybe 2005) in Melbourne where a
speaker from MS was illustrating the security related issues with SQL
server 2000 and 2005, and how to set them up to be safe and sound.

He established an instance of SQL Server 2005 running under a guest
account, and stated that he had the same running openly on the net for
anyone to try and hack into. To date, to the best of my knowledge, no-
one has managed to achieve the challenge of breaking into the machine
and either retreiving data from a database, a file off the HD, or
create / modify data on the server.

The bulk of vulnerabilities, apparently, came not from the server
application itself, but rather from poor installation practices and
poor website design that allowed SQL injection or plaintext username
and passwords stored in the code.

There is a lot of ignorance when it comes to 'security', especially
when it comes to IT related security. Everyone has an opinion but very
few of them are actually worth anything.

If you are looking at putting data on to the net with a database of
any form, then you need to look at a simple risk analysis to determine
the security needs. For most things a properly set up database server,
be it SQL Server, Postgres, Access or whatever you want to choose, can
be safe and secure. How secure you need to make it is the more
important question.

- Do you need the data transmitted securely between client and server
- Do you need the data to be stored in an encrypted format
- Should you be using VPN's to get to the server?
- Should the clients be just user authenticated or both user and
machine?
- How much authentication is enough? Tri-factor for the user + a
certificate and some hardware specifics for the machine? Certificates?
etc...
- Should the client machine have a local replicated copy? Should it be
stored securely?
- What is the potential damage / risk if the server is compromised?
- What is the potential damage / risk if the client is compromised?
- What is the potential damage / risk if the transmission is
compromised?

The issue here is not really an issue of SQL server security, but
rather of finding a way to give you the functionality you need with
minimal risk. SQL Server will do a fine enough job on the net for most
things AS LONG AS IT IS SET UP PROPERLY.

Do you scenario risk assessment then make your call on how to approach
and implement it.

Cheers

The Frog
Aug 19 '08 #7
On Aug 19, 3:34*am, The Frog <Mr.Frog.to....@googlemail.comwrote:
I saw a conference some years ago (maybe 2005) in Melbourne where a
speaker from MS was illustrating the security related issues with SQL
server 2000 and 2005, and how to set them up to be safe and sound.

He established an instance of SQL Server 2005 running under a guest
account, and stated that he had the same running openly on the net for
anyone to try and hack into. To date, to the best of my knowledge, no-
one has managed to achieve the challenge of breaking into the machine
and either retreiving data from a database, a file off the HD, or
create / modify data on the server.

The bulk of vulnerabilities, apparently, came not from the server
application itself, but rather from poor installation practices and
poor website design that allowed SQL injection or plaintext username
and passwords stored in the code.

There is a lot of ignorance when it comes to 'security', especially
when it comes to IT related security. Everyone has an opinion but very
few of them are actually worth anything.

If you are looking at putting data on to the net with a database of
any form, then you need to look at a simple risk analysis to determine
the security needs. For most things a properly set up database server,
be it SQL Server, Postgres, Access or whatever you want to choose, can
be safe and secure. How secure you need to make it is the more
important question.

- Do you need the data transmitted securely between client and server
- Do you need the data to be stored in an encrypted format
- Should you be using VPN's to get to the server?
- Should the clients be just user authenticated or both user and
machine?
- How much authentication is enough? Tri-factor for the user + a
certificate and some hardware specifics for the machine? Certificates?
etc...
- Should the client machine have a local replicated copy? Should it be
stored securely?
- What is the potential damage / risk if the server is compromised?
- What is the potential damage / risk if the client is compromised?
- What is the potential damage / risk if the transmission is
compromised?

The issue here is not really an issue of SQL server security, but
rather of finding a way to give you the functionality you need with
minimal risk. SQL Server will do a fine enough job on the net for most
things AS LONG AS IT IS SET UP PROPERLY.

Do you scenario risk assessment then make your call on how to approach
and implement it.

Cheers

The Frog
Aug 19 '08 #8
Tom van Stiphout <no*************@cox.netwrote in
news:p0********************************@4ax.com:
On 16 Aug 2008 21:40:30 GMT, "David W. Fenton"
<XX*******@dfenton.com.invalidwrote:
>>Tom van Stiphout <no*************@cox.netwrote in
news:lk********************************@4ax.co m:
>>you may be able to talk the company into opening up the SQL
Server port 1433 on their firewall (of course after properly
securing such access) so you can use it.
Repeat:
>>No competent sysadmin is going to do that.

Many ISPs do just that.
GoTo Repeat

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Aug 19 '08 #9
Hi Peter,

If you're talking about Remote Desktop Connection, it might be better to post
it to the Windows XP OS forums.

I use Remote Desktop connection for my test server on the local network. For
that you need the server IP address or the server name. But if the host (SQL
Server) OS is Windows XP, you will need to open the ports on the firewall.

You'll also need the user ID and Password on the host to login.

PeterW wrote:
>Hello.

Can I connect to a SQL server through Remote Desktop?

If so, could someone point me to somwhere to find the information I need to
achieve this. To date, I have only run databases on a stand alone computer
so this would be a new venture for me.

I can log on to the remote computer and navigate to the database files which
are on a dedicated drive 'E'

Thank you very much.

PeterW
--
Please Rate the posting if helps you

Message posted via http://www.accessmonster.com

Aug 20 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Jerry Orr | last post by:
We are trying to determine the easiest (and cheapest) way to get connections for about 50 Win2K workstations on our LAN to DB2 on a z/OS server. We could install DB2 Connect Personal Edition on...
4
by: Scott Holland | last post by:
HELP - Need to connect to DB2 database on AIX from NT server. Also AS/400 from NT Server -- I am experienced in ORACLE and a novice at DB2. What tools would be the equivalent of Net*8 or...
0
by: Zorba.GR | last post by:
IBM DB2 Connect Enterprise Edition v8.2, other IBM DB2 (32 bit, 64 bit) (MULTiOS, Windows, Linux, Solaris), IBM iSoft Commerce Suite Server Enterprise v3.2.01, IBM Tivoli Storage Resource Manager...
5
by: mayamorning123 | last post by:
A comparison among six VSS remote tools including SourceOffSite , SourceAnyWhere, VSS Connect, SourceXT, VSS Remoting, VSS.NET To view the full article, please visit...
14
by: DaTurk | last post by:
I am makeing a Multicast server client setup and was wondering what the difference is between Socket.Connect, and Socket.Bind. It may be a stupid question, but I was just curious. Because I...
0
by: Clodoaldo Pinto | last post by:
Can't connect to postgresql server php error log message: PHP Warning: pg_connect() : Unable to connect to PostgreSQL server: could not connect to server: Permission denied\n\tIs the server...
14
by: Marcus | last post by:
I have a function that simply returns TRUE if it can connect to a particular Sql Server 2005 express, or FALSE if it cannot. I am getting some strange error codes returned when the computer that...
0
by: tamayi | last post by:
I have a problem (like most others posting issues on this forum :) ) I have a remote server running Windows XP SP2, with both SQL Server 2005 Express with Advanced Features and SQL 2000...
7
by: RN1 | last post by:
Is it possible to connect to my local SQL Server 2005 database from a remote web server? If yes, what ConnectionString do I use? Thanks, Ron
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.