473,698 Members | 2,635 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Upgrade Wizard

Hello All

I have SQL Server versions 6.5 and 2000 installed on a Windows 2000
server.
I installed 6.5 first, coppied a backup of a database to the server and

restored it. I then installed 2000. I am trying to use the upgrade
wizzard.

On the first screen I keep the default settings, export and import
objects
and data, use a named pipe. Its all on the same server, give it the sa
password for both installations (its the same). All services are
running
under local system account.

It switches between the two versions a couple of times then comes up
with
this error message:

Couldn't create or register the SQLUpgrade DSN

Anybody got any idea what it means?

Regards

Matt

Jul 23 '05 #1
2 1995
On 3 Jun 2005 01:24:06 -0700, "Matt" <jo************ *@rbs.co.uk>
wrote:
Hello All

I have SQL Server versions 6.5 and 2000 installed on a Windows 2000
server.
I installed 6.5 first, coppied a backup of a database to the server and

restored it. I then installed 2000. I am trying to use the upgrade
wizzard.

On the first screen I keep the default settings, export and import
objects
and data, use a named pipe. Its all on the same server, give it the sa
password for both installations (its the same). All services are
running
under local system account.

It switches between the two versions a couple of times then comes up
with
this error message:

Couldn't create or register the SQLUpgrade DSN

Anybody got any idea what it means?

Regards

Matt

Not sure if this answers your question, since I have never run the
upgrade wizard, but Have heard that if you plan to use the upgrade
wizard when installing SQL2K, you should read Microsoft KB300676
first.

Jul 23 '05 #2
[posted and mailed, please reply in news]

Matt (jo************ *@rbs.co.uk) writes:
I have SQL Server versions 6.5 and 2000 installed on a Windows 2000
server.
I installed 6.5 first, coppied a backup of a database to the server and
restored it. I then installed 2000. I am trying to use the upgrade
wizzard.

On the first screen I keep the default settings, export and import
objects and data, use a named pipe. Its all on the same server, give it
the sa password for both installations (its the same). All services are
running under local system account.

It switches between the two versions a couple of times then comes up
with this error message:

Couldn't create or register the SQLUpgrade DSN

Anybody got any idea what it means?


Never seen the message. It seems that the upgrade wizard tries to
create an ODBC data source, but fails for some reason. Permissions?
I've no idea.

Just like "Joe Cool", I have never run the upgrade wizard. We carried out
all our 6.5/2000 migrations on our own. And, really, it's not that
difficult at all.

1) If you don't have scripts for your databases under version control,
script them out through Enterpise Manager.

2) Run the scripts on SQL 2000, and fix any problems.

3) For each database, run this:
SELECT bcp ' + db_name() + '..' + name + ' out ' + name + '.bcp ' +
'-S server -U sa -P xxxx -b 1000 -c -t@!@ -r"\n<->\n" ' +
CASE WHEN EXISTS (SELECT *
FROM syscolumns c
WHERE c.id = o.id
AND c.status & 0x80 <> 0)
THEN ' -E'
ELSE ''
END
FROM sysobjects o
WHERE type = 'U'
ORDER BY o.name

4) Save the output in a .BAT file, and run the file from the SQL 2000
box.

5) Edit the file, to change "out" to "in" and change the server name
and authentication information.

6) Run the file again.

At this point all data has been migrated. Logins and users are left to
do, but that is not to tricky to find out.

The advantage of this method, over any wizard, is that you have control
over what is going on, and you are not stumped by things that the wizard
does behind your back.

--
Erland Sommarskog, SQL Server MVP, es****@sommarsk og.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 23 '05 #3

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

Similar topics

2
2057
by: kg7poe | last post by:
We have Sqlsvr 6.5 under NT4. We want to upgrade the database to Sqlsvr 2000 under windows 2K. Is there any way we can do this by copying the database to the win2K computer?? At any rate would someone explain how to go about updating this. I know nothing about sqlsvr anyversion but do need to know. TIA
2
2118
by: Saiyou Anh | last post by:
Hi! If doing online version upgrade from SQL 7.0 to SQl 2000, (1) do I need to shut down server? (2) after upgrading, is all login and db user, group information, scheduled Jobs, maintenance paln... still there? or I have to save the info before upgrading and recreate after upgrading? (3) any other tips I need to know? I'm doign that for the first time. Thanks! Saiyou
4
1954
by: MadCrazyNewbie | last post by:
Hey Group, I have a VB6 Project im trying to use with VB.Net, It lets me open it and the Upgrade Wizard Launches I click next Select EXE and Click Next Again, the it errors with: "Upgrade Failed: Exception Error Occurred: Invalid System Configuration (Unable to Locate Micorosoft.VisualBasic.UpgradeExtensions.dll. Please re-run Setup and try again."
2
1374
by: Shailja | last post by:
I read lots of stuff on MSDN relating to upgrading a COM Dll build using VB6 to VB.Net. Its seems to be a very easy task. As per few articles when we open vb6 application in .Net framework upgrade wizard is invoked. The wizard gives us option to create DLL (option to create EXE is grayed). Then articles says that if we want methods of public classes to be converted to interface methods check the box for Generate Interfaces For Classes....
2
1748
by: Sharrukin Amiri | last post by:
Where can I find the upgrade wizard to that I can uprade my vb6.0 ap to vb 2005 express edition beta 2? Thanks! Sharrukin
4
2712
by: Laphan | last post by:
Hi All I know that if SQL 6.5 was on a server and you then install SQL 2000 on it you get the wizard option to upgrade an SQL 6.5 DB to 2000, but I don't have the luxury of this. I have an SQL 6.5 DB, which I want to convert, but only SQL 2000 on my server. Do you know what options I have available to me to perform this upgrade with
1
1878
by: rdraider | last post by:
Hi, I am trying to use the Upgrade Wizard in SQL 2000 to upgrade a SQL 6.5 db to 2000. I am only choosing to update a single database, not system objects. The Upgrade wizard connects to SQL 6.5, checks the db, creates the db on SQL 2000 with all tables and imports users from SQL 6.5. The problem comes when it tries to bring over the actual data. I get an error: "Couldn't connection to the export machine!" in the out log file. The in...
1
2542
by: bob.ward | last post by:
I attempted to upgrade to SQL Server 2000 from SQL Server 6.5 using the SQL Server Upgrade Wizard and I immediately received the following error message: An unknown error occurred while trying to restart your SQL Server 2000. Please check the server errorlog and try again. I've checked the SQL Server log and all of the logs available in the Event Viewer and I don't see anything remarkable in any of them. Does anyone have any...
1
1206
by: Armin Zingler | last post by:
Hi group, after waiting more than 4 month in the .upgrade group for an answer, I dare to ask here. :-) I open a VB6 project in VB 2008 (express) and have the Wizard convert it. It also creates the necessary interop assemblies for the referenced ActiveX dlls. Problem: the interop assemblies are not imported the way they should. The
0
8683
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9031
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7740
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6528
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5862
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4372
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2339
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.