Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Windows Small Business Server > MSDE Database move to a new Server - any SQL guru's out there?

Reply
Thread Tools Display Modes

MSDE Database move to a new Server - any SQL guru's out there?

 
 
Lesa H.
Guest
Posts: n/a

 
      11-12-2009
I'm sorry for the cross post, but I have a new customer that I need to get
up and running on this new server. Here's the situation:

First let me say that I don't have much experience with SQL so bear with me
here. I have a client that has a MSDE 2000 database on their old server and
want to move it to the new server. I created a database instance on the new
server with the same database instance name as the old server. The new
server has a different name, but the database instance on both is the same.

The database service for the new instance is shown in the services and it is
running. I detached the database files on the old server and then copied
them from the folder on the old server to the new server. I used the SQL
Express Management utility to connect to the instance and then attached the
database files on the new server. I setup security to match the old server
with SQL and Windows Authentication. I can connect to the database and
create a DSN if I'm logged directly into the new server on that server, but
if I try to create a DSN from one of the other computers in the network, I
get an error message that the server doesn't exist or is not running even if
I'm logged into the workstation as an administrator. The error is as
follows:

Connection failed:
SQLState:'01000'
SQL Server Error: 11004
[Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
(Connect()).
Connection failed:
SQLState: '08001'
SQL Server Error: 6
[Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server not
found.

I'm sure I'm missing something simple, but I can't figure out what it is.
Can anyone help me??

TIA

Lesa



 
Reply With Quote
 
 
 
 
Cliff Galiher
Guest
Posts: n/a

 
      11-12-2009
SQL Server does not allow remote connections by default. This needs to be
enabled. Which version of SQL server did you migrate the instance to?

-Cliff


"Lesa H." <> wrote in message
news:...
> I'm sorry for the cross post, but I have a new customer that I need to get
> up and running on this new server. Here's the situation:
>
> First let me say that I don't have much experience with SQL so bear with
> me here. I have a client that has a MSDE 2000 database on their old server
> and want to move it to the new server. I created a database instance on
> the new server with the same database instance name as the old server. The
> new server has a different name, but the database instance on both is the
> same.
>
> The database service for the new instance is shown in the services and it
> is running. I detached the database files on the old server and then
> copied them from the folder on the old server to the new server. I used
> the SQL Express Management utility to connect to the instance and then
> attached the database files on the new server. I setup security to match
> the old server with SQL and Windows Authentication. I can connect to the
> database and create a DSN if I'm logged directly into the new server on
> that server, but if I try to create a DSN from one of the other computers
> in the network, I get an error message that the server doesn't exist or is
> not running even if I'm logged into the workstation as an administrator.
> The error is as follows:
>
> Connection failed:
> SQLState:'01000'
> SQL Server Error: 11004
> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
> (Connect()).
> Connection failed:
> SQLState: '08001'
> SQL Server Error: 6
> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server
> not found.
>
> I'm sure I'm missing something simple, but I can't figure out what it is.
> Can anyone help me??
>
> TIA
>
> Lesa
>
>
>

 
Reply With Quote
 
Lesa H.
Guest
Posts: n/a

 
      11-12-2009
It's MSDE (SQL 2000 SP4). I've got the SQL Studio Management Express
installed, so I can look at the properties with that if needed. I just
couldn't find where to make it accept remote connections.

"Cliff Galiher" <> wrote in message
news:%...
> SQL Server does not allow remote connections by default. This needs to be
> enabled. Which version of SQL server did you migrate the instance to?
>
> -Cliff
>
>
> "Lesa H." <> wrote in message
> news:...
>> I'm sorry for the cross post, but I have a new customer that I need to
>> get up and running on this new server. Here's the situation:
>>
>> First let me say that I don't have much experience with SQL so bear with
>> me here. I have a client that has a MSDE 2000 database on their old
>> server and want to move it to the new server. I created a database
>> instance on the new server with the same database instance name as the
>> old server. The new server has a different name, but the database
>> instance on both is the same.
>>
>> The database service for the new instance is shown in the services and it
>> is running. I detached the database files on the old server and then
>> copied them from the folder on the old server to the new server. I used
>> the SQL Express Management utility to connect to the instance and then
>> attached the database files on the new server. I setup security to match
>> the old server with SQL and Windows Authentication. I can connect to the
>> database and create a DSN if I'm logged directly into the new server on
>> that server, but if I try to create a DSN from one of the other computers
>> in the network, I get an error message that the server doesn't exist or
>> is not running even if I'm logged into the workstation as an
>> administrator. The error is as follows:
>>
>> Connection failed:
>> SQLState:'01000'
>> SQL Server Error: 11004
>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
>> (Connect()).
>> Connection failed:
>> SQLState: '08001'
>> SQL Server Error: 6
>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server
>> not found.
>>
>> I'm sure I'm missing something simple, but I can't figure out what it is.
>> Can anyone help me??
>>
>> TIA
>>
>> Lesa
>>
>>
>>



 
Reply With Quote
 
Lesa H.
Guest
Posts: n/a

 
      11-12-2009
Thanks so much Cliff!! You were able to lead me to the right place to get it
fixed. I did the following (for anyone else who might have this problem):

a.. Click Start, Run
a.. Enter svrnetcn.exe to run the "SQL Server Network Utility"
a.. Select "TCP/IP" from the Disabled protocols and click "Enable >>
a.. I enabled Named Pipes just for good measure.

Thanks again,

Lesa

"Lesa H." <> wrote in message
news:...
> It's MSDE (SQL 2000 SP4). I've got the SQL Studio Management Express
> installed, so I can look at the properties with that if needed. I just
> couldn't find where to make it accept remote connections.
>
> "Cliff Galiher" <> wrote in message
> news:%...
>> SQL Server does not allow remote connections by default. This needs to
>> be enabled. Which version of SQL server did you migrate the instance to?
>>
>> -Cliff
>>
>>
>> "Lesa H." <> wrote in message
>> news:...
>>> I'm sorry for the cross post, but I have a new customer that I need to
>>> get up and running on this new server. Here's the situation:
>>>
>>> First let me say that I don't have much experience with SQL so bear with
>>> me here. I have a client that has a MSDE 2000 database on their old
>>> server and want to move it to the new server. I created a database
>>> instance on the new server with the same database instance name as the
>>> old server. The new server has a different name, but the database
>>> instance on both is the same.
>>>
>>> The database service for the new instance is shown in the services and
>>> it is running. I detached the database files on the old server and then
>>> copied them from the folder on the old server to the new server. I used
>>> the SQL Express Management utility to connect to the instance and then
>>> attached the database files on the new server. I setup security to match
>>> the old server with SQL and Windows Authentication. I can connect to the
>>> database and create a DSN if I'm logged directly into the new server on
>>> that server, but if I try to create a DSN from one of the other
>>> computers in the network, I get an error message that the server doesn't
>>> exist or is not running even if I'm logged into the workstation as an
>>> administrator. The error is as follows:
>>>
>>> Connection failed:
>>> SQLState:'01000'
>>> SQL Server Error: 11004
>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
>>> (Connect()).
>>> Connection failed:
>>> SQLState: '08001'
>>> SQL Server Error: 6
>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server
>>> not found.
>>>
>>> I'm sure I'm missing something simple, but I can't figure out what it
>>> is. Can anyone help me??
>>>
>>> TIA
>>>
>>> Lesa
>>>
>>>
>>>

>
>



 
Reply With Quote
 
Cliff Galiher
Guest
Posts: n/a

 
      11-12-2009
Glad I was able to point you in the right direction. Sorry I didn't see
your reply earlier or I could have given more direct instructions. Thanks
for posting back with your final solution though! Good luck!

-Cliff


"Lesa H." <> wrote in message
news:...
> Thanks so much Cliff!! You were able to lead me to the right place to get
> it fixed. I did the following (for anyone else who might have this
> problem):
>
> a.. Click Start, Run
> a.. Enter svrnetcn.exe to run the "SQL Server Network Utility"
> a.. Select "TCP/IP" from the Disabled protocols and click "Enable >>
> a.. I enabled Named Pipes just for good measure.
>
> Thanks again,
>
> Lesa
>
> "Lesa H." <> wrote in message
> news:...
>> It's MSDE (SQL 2000 SP4). I've got the SQL Studio Management Express
>> installed, so I can look at the properties with that if needed. I just
>> couldn't find where to make it accept remote connections.
>>
>> "Cliff Galiher" <> wrote in message
>> news:%...
>>> SQL Server does not allow remote connections by default. This needs to
>>> be enabled. Which version of SQL server did you migrate the instance
>>> to?
>>>
>>> -Cliff
>>>
>>>
>>> "Lesa H." <> wrote in message
>>> news:...
>>>> I'm sorry for the cross post, but I have a new customer that I need to
>>>> get up and running on this new server. Here's the situation:
>>>>
>>>> First let me say that I don't have much experience with SQL so bear
>>>> with me here. I have a client that has a MSDE 2000 database on their
>>>> old server and want to move it to the new server. I created a database
>>>> instance on the new server with the same database instance name as the
>>>> old server. The new server has a different name, but the database
>>>> instance on both is the same.
>>>>
>>>> The database service for the new instance is shown in the services and
>>>> it is running. I detached the database files on the old server and then
>>>> copied them from the folder on the old server to the new server. I used
>>>> the SQL Express Management utility to connect to the instance and then
>>>> attached the database files on the new server. I setup security to
>>>> match the old server with SQL and Windows Authentication. I can connect
>>>> to the database and create a DSN if I'm logged directly into the new
>>>> server on that server, but if I try to create a DSN from one of the
>>>> other computers in the network, I get an error message that the server
>>>> doesn't exist or is not running even if I'm logged into the workstation
>>>> as an administrator. The error is as follows:
>>>>
>>>> Connection failed:
>>>> SQLState:'01000'
>>>> SQL Server Error: 11004
>>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
>>>> (Connect()).
>>>> Connection failed:
>>>> SQLState: '08001'
>>>> SQL Server Error: 6
>>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL server
>>>> not found.
>>>>
>>>> I'm sure I'm missing something simple, but I can't figure out what it
>>>> is. Can anyone help me??
>>>>
>>>> TIA
>>>>
>>>> Lesa
>>>>
>>>>
>>>>

>>
>>

>
>

 
Reply With Quote
 
Lesa H.
Guest
Posts: n/a

 
      11-14-2009
That's OK Cliff. It only took me a couple of minutes once I read your post.
As usual, this group ROCKS!

Lesa
"Cliff Galiher" <> wrote in message
news:...
> Glad I was able to point you in the right direction. Sorry I didn't see
> your reply earlier or I could have given more direct instructions. Thanks
> for posting back with your final solution though! Good luck!
>
> -Cliff
>
>
> "Lesa H." <> wrote in message
> news:...
>> Thanks so much Cliff!! You were able to lead me to the right place to get
>> it fixed. I did the following (for anyone else who might have this
>> problem):
>>
>> a.. Click Start, Run
>> a.. Enter svrnetcn.exe to run the "SQL Server Network Utility"
>> a.. Select "TCP/IP" from the Disabled protocols and click "Enable >>
>> a.. I enabled Named Pipes just for good measure.
>>
>> Thanks again,
>>
>> Lesa
>>
>> "Lesa H." <> wrote in message
>> news:...
>>> It's MSDE (SQL 2000 SP4). I've got the SQL Studio Management Express
>>> installed, so I can look at the properties with that if needed. I just
>>> couldn't find where to make it accept remote connections.
>>>
>>> "Cliff Galiher" <> wrote in message
>>> news:%...
>>>> SQL Server does not allow remote connections by default. This needs to
>>>> be enabled. Which version of SQL server did you migrate the instance
>>>> to?
>>>>
>>>> -Cliff
>>>>
>>>>
>>>> "Lesa H." <> wrote in message
>>>> news:...
>>>>> I'm sorry for the cross post, but I have a new customer that I need to
>>>>> get up and running on this new server. Here's the situation:
>>>>>
>>>>> First let me say that I don't have much experience with SQL so bear
>>>>> with me here. I have a client that has a MSDE 2000 database on their
>>>>> old server and want to move it to the new server. I created a database
>>>>> instance on the new server with the same database instance name as the
>>>>> old server. The new server has a different name, but the database
>>>>> instance on both is the same.
>>>>>
>>>>> The database service for the new instance is shown in the services and
>>>>> it is running. I detached the database files on the old server and
>>>>> then copied them from the folder on the old server to the new server.
>>>>> I used the SQL Express Management utility to connect to the instance
>>>>> and then attached the database files on the new server. I setup
>>>>> security to match the old server with SQL and Windows Authentication.
>>>>> I can connect to the database and create a DSN if I'm logged directly
>>>>> into the new server on that server, but if I try to create a DSN from
>>>>> one of the other computers in the network, I get an error message that
>>>>> the server doesn't exist or is not running even if I'm logged into the
>>>>> workstation as an administrator. The error is as follows:
>>>>>
>>>>> Connection failed:
>>>>> SQLState:'01000'
>>>>> SQL Server Error: 11004
>>>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen
>>>>> (Connect()).
>>>>> Connection failed:
>>>>> SQLState: '08001'
>>>>> SQL Server Error: 6
>>>>> [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]Specified SQL
>>>>> server not found.
>>>>>
>>>>> I'm sure I'm missing something simple, but I can't figure out what it
>>>>> is. Can anyone help me??
>>>>>
>>>>> TIA
>>>>>
>>>>> Lesa
>>>>>
>>>>>
>>>>>
>>>
>>>

>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
migrate from windows server 2003 to windows server 2008R2 weedfrog Windows Server 9 12-15-2009 05:58 PM
Repair DNS 4010 events... Jake Windows Server 1 11-04-2009 11:20 AM
HELP sfc /scannow William Beard Windows Vista Performance 17 05-11-2007 04:28 AM
Sync SQL Server Express 2005 and SQL Server Mobile 2005. Paul Aspinall ActiveSync 2 12-05-2005 01:16 PM
Re: Synchronising SQL Server 2005 mobile with SQL Server 2005 Express Paul Aspinall ActiveSync 2 12-02-2005 11:51 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59