No no...I don't want to add the server -- it doesn't exist. I want to change or remove wherever it is trying to use that old server name within the database.
Main Topics
Browse All TopicsI'm getting the following error when I try to import a database from our live server to our test server:
Could not find server 'tmviis1' in sysservers. Execute sp_addlinkedserver to add the server to sysservers.
This server name is no longer used for our live web server. How can I find where the problem is so that I can fix it?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
It is no where in the script (just checked). All I did was go to "Import..." and put my source server, destination server, copy objects, selected everything except data (because of the BLOBs over 64k problem with import/export), and it gave me that error. I may need a little more detail in the responses because I'm pretty new to this. Thanks.
Both locations are fine, here's the summary before it runs:
==========================
Source: Microsoft SQL Server
Using Microsoft OLE DB Provider for SQL Server
Location: mis00004
Database: its2
Destination: Microsoft SQL Server
Using Microsoft OLE DB Provider for SQL Server
Location: MIS0020
Database: its2
Tables
==========================
It's for an intranet, so there's no public interface for it and, thus, no external IP. My thoughts are that something internal is trying to use that old name. Is there an error log that would be more specific to where the error originated?
internet uses DNS for name resolution
intranet uses WINS for name resolution. There could be a problem there.
to bypass the WINS server you can specify the IP of MIS0020 rather than the name. This will eliminate the possibility of there being a WINS problem
what happens if you ping MIS0020 ??? does it reply ok?
Business Accounts
Answer for Membership
by: ved17novPosted on 2005-12-19 at 08:21:10ID: 15511797
Check the server are exists or not.
Check the entry in sysservers (Check your server name exists or not) or using @@SERVERNAME
SP_ADDSERVER 'tmviis1'
procedure to add the server name.
and try for import database