Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Need to connec to Sql 7.0 from SSMS 2k5

Author  Topic 

chander_2580
Yak Posting Veteran

76 Posts

Posted - 2008-10-14 : 11:38:13
Hi Gurus !!

I have sqlserver 2005 developer edition on one server and now the requirement arises to connect sqlserver 7.0 from SSMS (sqlserver 2005)
. Please advice and guided me through the steps required to undertake to connect to sql 7.0 from SSMS.
Thanks in advance.

Regards
Chander

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-10-14 : 11:48:45
Use Linked Server.
Go to Top of Page

chander_2580
Yak Posting Veteran

76 Posts

Posted - 2008-10-14 : 12:24:58
I am still not able to connect to the server, please advice some other work around.

quote:
Originally posted by sodeep

Use Linked Server.

Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-10-14 : 18:44:31
Did you setup linked Server Correctly? What error did you get?
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-14 : 19:10:03
You can not connect to a SQL Server 7.0 database server from Management Studio.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-10-14 : 19:56:48
Yes you can.
The only issue I see is Compatibility issues:
http://sql-server-performance.com/Community/forums/t/28315.aspx
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-15 : 12:40:38
Hmmm, that's not what I read elsewhere.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

SimpleSQL
Yak Posting Veteran

85 Posts

Posted - 2008-10-16 : 04:01:40
You cannot use SSMS to connect to SQL 7
Go to Top of Page

NeilG
Aged Yak Warrior

530 Posts

Posted - 2008-10-16 : 05:00:35
According to the microsoft site you are unable to connect to any database lower that 2000 from SSMS, but if there is a way round i would love to know!
Go to Top of Page

darkdusky
Aged Yak Warrior

591 Posts

Posted - 2008-10-16 : 09:38:06
You can use OPENROWSET without setting up linked server. If you set up a DSN to the SQL Server 7, then:

SELECT *
FROM OPENROWSET('MSDASQL','DSN_NAME';'username';'password',
'select * FROM xxx.xxxxx ') AS a
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-17 : 00:26:55
quote:
Originally posted by sodeep

Yes you can.
The only issue I see is Compatibility issues:
http://sql-server-performance.com/Community/forums/t/28315.aspx



sodeep, show us how you can register a SQL Server 7.0 server in Management Studio as all documentation indicates this isn't possible. You keep mentioning a linked server, however that is not what the original poster wants.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -