dbTalk Databases Forums  

URGENT INFO NEEDED

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss URGENT INFO NEEDED in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Frank Srebot
 
Posts: n/a

Default URGENT INFO NEEDED - 06-15-2006 , 09:23 AM






I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank

Reply With Quote
  #2  
Old   
Sue Hoegemeier
 
Posts: n/a

Default Re: URGENT INFO NEEDED - 06-15-2006 , 02:14 PM






Yes it's possible as long as you aren't restoring a higher
version to a lower version.
When you say it didn't work - what was the exact error
message? What statements are you using to backup and
restore?

-Sue

On Thu, 15 Jun 2006 07:23:02 -0700, Frank Srebot
<FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

Quote:
I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank


Reply With Quote
  #3  
Old   
Frank Srebot
 
Posts: n/a

Default Re: URGENT INFO NEEDED update - 06-15-2006 , 03:49 PM



That may be the case.

The error is as follows:


[Microsoft][ODBC SQL Server Driver][SQL Server]Device activation error.The
Physical filename 'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS
Tables_Data.MDF' may be incorrect.

[Microsoft][ODBC SQL Server Driver][SQL Server] File 'FGS Tables_Data.MDF'
restored to
'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS Tables_Data.MDF'. Use
WITH MOVE to identify a valid location for the file.

the same error continues referencing the 'E:\Program Files\Microsoft SQL
Server\MSSQL\data\FGS Tables_Log.LDF' file

Also, it is possible to drop a database from MSDE using Access project?

The version of MSDE is the most current. The sql developers edition has been
updated.

Thanks

Frank


"Sue Hoegemeier" wrote:

Quote:
Yes it's possible as long as you aren't restoring a higher
version to a lower version.
When you say it didn't work - what was the exact error
message? What statements are you using to backup and
restore?

-Sue

On Thu, 15 Jun 2006 07:23:02 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank



Reply With Quote
  #4  
Old   
Sue Hoegemeier
 
Posts: n/a

Default Re: URGENT INFO NEEDED update - 06-15-2006 , 08:34 PM



The answer is in the error message. You need to use the with
move option to move the data, log files to a valid location
on the new box. You can get information on the logical file
names and physical file locations from the backup using
restore filelistonly. That will give you the information you
need to supply to the with move command.
Restore database and with move are documented in books
online as is restore filelistonly.

-Sue

On Thu, 15 Jun 2006 13:49:03 -0700, Frank Srebot
<FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

Quote:
That may be the case.

The error is as follows:


[Microsoft][ODBC SQL Server Driver][SQL Server]Device activation error.The
Physical filename 'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS
Tables_Data.MDF' may be incorrect.

[Microsoft][ODBC SQL Server Driver][SQL Server] File 'FGS Tables_Data.MDF'
restored to
'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS Tables_Data.MDF'. Use
WITH MOVE to identify a valid location for the file.

the same error continues referencing the 'E:\Program Files\Microsoft SQL
Server\MSSQL\data\FGS Tables_Log.LDF' file

Also, it is possible to drop a database from MSDE using Access project?

The version of MSDE is the most current. The sql developers edition has been
updated.

Thanks

Frank


"Sue Hoegemeier" wrote:

Yes it's possible as long as you aren't restoring a higher
version to a lower version.
When you say it didn't work - what was the exact error
message? What statements are you using to backup and
restore?

-Sue

On Thu, 15 Jun 2006 07:23:02 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank




Reply With Quote
  #5  
Old   
Frank Srebot
 
Posts: n/a

Default Re: URGENT INFO NEEDED update - 06-19-2006 , 08:29 AM



I Will Try That and post my success!

Thank you so much!!

Frank



"Sue Hoegemeier" wrote:

Quote:
The answer is in the error message. You need to use the with
move option to move the data, log files to a valid location
on the new box. You can get information on the logical file
names and physical file locations from the backup using
restore filelistonly. That will give you the information you
need to supply to the with move command.
Restore database and with move are documented in books
online as is restore filelistonly.

-Sue

On Thu, 15 Jun 2006 13:49:03 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

That may be the case.

The error is as follows:


[Microsoft][ODBC SQL Server Driver][SQL Server]Device activation error.The
Physical filename 'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS
Tables_Data.MDF' may be incorrect.

[Microsoft][ODBC SQL Server Driver][SQL Server] File 'FGS Tables_Data.MDF'
restored to
'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS Tables_Data.MDF'. Use
WITH MOVE to identify a valid location for the file.

the same error continues referencing the 'E:\Program Files\Microsoft SQL
Server\MSSQL\data\FGS Tables_Log.LDF' file

Also, it is possible to drop a database from MSDE using Access project?

The version of MSDE is the most current. The sql developers edition has been
updated.

Thanks

Frank


"Sue Hoegemeier" wrote:

Yes it's possible as long as you aren't restoring a higher
version to a lower version.
When you say it didn't work - what was the exact error
message? What statements are you using to backup and
restore?

-Sue

On Thu, 15 Jun 2006 07:23:02 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank





Reply With Quote
  #6  
Old   
Frank Srebot
 
Posts: n/a

Default Re: URGENT INFO NEEDED update - 06-19-2006 , 04:23 PM



HI

I still have not been successful in restoring. I do not know how to
incorporate the WITH MOVE statement in an Access 2002 project. I looked up
the info in the microsoft website, but they give no specifics on how to use
these statements. Is there any feature which allows you to restore a database
from SQL Server 2000 developer to MSDE. I need reference to an Acess 2002
access data project (.adp) if possible.

Thanks

Frank

"Frank Srebot" wrote:

Quote:
I Will Try That and post my success!

Thank you so much!!

Frank



"Sue Hoegemeier" wrote:

The answer is in the error message. You need to use the with
move option to move the data, log files to a valid location
on the new box. You can get information on the logical file
names and physical file locations from the backup using
restore filelistonly. That will give you the information you
need to supply to the with move command.
Restore database and with move are documented in books
online as is restore filelistonly.

-Sue

On Thu, 15 Jun 2006 13:49:03 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

That may be the case.

The error is as follows:


[Microsoft][ODBC SQL Server Driver][SQL Server]Device activation error.The
Physical filename 'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS
Tables_Data.MDF' may be incorrect.

[Microsoft][ODBC SQL Server Driver][SQL Server] File 'FGS Tables_Data.MDF'
restored to
'E:\Program Files\Microsoft SQL Server\MSSQL\data\FGS Tables_Data.MDF'. Use
WITH MOVE to identify a valid location for the file.

the same error continues referencing the 'E:\Program Files\Microsoft SQL
Server\MSSQL\data\FGS Tables_Log.LDF' file

Also, it is possible to drop a database from MSDE using Access project?

The version of MSDE is the most current. The sql developers edition has been
updated.

Thanks

Frank


"Sue Hoegemeier" wrote:

Yes it's possible as long as you aren't restoring a higher
version to a lower version.
When you say it didn't work - what was the exact error
message? What statements are you using to backup and
restore?

-Sue

On Thu, 15 Jun 2006 07:23:02 -0700, Frank Srebot
FrankSrebot (AT) discussions (DOT) microsoft.com> wrote:

I have a database created in SQL SERVER 2000 developers edition (with
triggers), and I would like to transfer this database into an MSDE instance
using a Microsoft Data Project on a seperate machine.

I have tried to back up the DB and restore it to the MSDE connected project,
but it did not work.

Is this possible and how?

Thanks

Frank





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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.