How to migrate from sqlserver 2005 to sql server 2000
(every one know reverse process of that )

Answers were Sorted based on User's Feedback



How to migrate from sqlserver 2005 to sql server 2000 (every one know reverse process of that )..

Answer / venu

During the process of migrating to SQL Server 2005, many
development organizations will still be forced to support
SQL Server 2000 installations. As a result, a common
requirement is the ability to reverse-migrate: move
databases back from SQL Server 2005 to SQL Server 2000.

Unfortunately, this is not as easy. Backed-up databases from
SQL Server 2005 instances cannot be restored in SQL Server
2000 instances. Nor can detached SQL Server 2005 databases
be reattached to SQL Server 2000.

Because backup/restore and detach/attach are not supported,
the only methods available for moving data from SQL Server
2005 installations to SQL Server 2000 installations are
based on copying data. Data and schemas can be scripted
using a tool such as Red Gate's SQL Packager and scripts can
be applied on the SQL Server 2000 installations. Another
option is to use tools such as DTS or SSIS, both of which
include data copying wizards.

However, copying data and schema is a potentially
troublesome experience. SQL Server 2005 supports many
features that are not present in SQL Server 2000 and can
cause problems during cross-migration. It's important to be
cautious when attempting to develop solutions for both
platforms, and my recommendation is that development should
be done using SQL Server 2000 and the code and data migrated
forward to SQL Server 2005, rather than the other way around.

Is This Answer Correct ?    13 Yes 1 No

How to migrate from sqlserver 2005 to sql server 2000 (every one know reverse process of that )..

Answer / neeraj tyagi

Open SQL server managment studio
Connect to required SQL Server Instance
Right click on Database
Select properties
From property window, select Option
There is compatability mode drop down
Change drop down to required version
then save and close property dialog window.

Then take backup of database and restore it to older
version Sql server or attach the same sql serve database
file

Is This Answer Correct ?    10 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Can I stream live content/events?

0 Answers  


By default, Web API sends HTTP response with which of the following status code for all uncaught exception?

0 Answers  


How to create a permanent cookie?

1 Answers   IBM,


relacement of websevices in .net 3.0?

1 Answers   Mind Tree,


What is the viewstate in asp.net?

0 Answers  






What is a proxy in web service?

0 Answers  


What is the concept of view state in asp.net?

0 Answers  


What is an iHTTPModule, and explain its implementation with its limitations?

1 Answers   Siebel,


What is cyclomatic complexity and why is it important?

1 Answers  


You create an ASP.NET application for a hotel. The application contains a page that displays current weather conditions for the city in which the hotel is located. The application calls an XML Web service every 10 minutes to update the current weather conditions. A new page is then displayed for subsequent requests. You want the same page to be cached and retrieved from the cache during the time between calls to the XML Web service. You decide to use a Page directive to accomplish this goal. Which Page directive should you use? A . <%@ Cache Seconds="600 '' VaryByParam="Page" %> B . <%@ OutputCache Time="600" %> C . <%@ OutputCache Duration="600" VaryByParam="None" %> D . <%@ OutputCache Duration="600" %>

2 Answers   Syntax Softtech,


Name the tools or API for developing or testing web api?

0 Answers  


Does JITting occur per-assembly or per-method? How does this affect the working set?

1 Answers  


Categories