I have a SQL Server 2000 database and I want to convert it to SQL Server 2005
It should be possible to attach or restore a SQL 2000 backup into a SQL 2005 server.
Related
i have 2 server.
one using Oracle database and other using SQL Server 2008.
how i can link that server?
can anyone give me solution?
How can I transfer a SQL Server Compact database to SQL Server 2008 by using
a SQL Server 2008 procedure?
Yes, you can create a SQLCLR procedure using the SQL Server Compact OLEDB provider. I have some sample code here: http://erikej.blogspot.dk/2008/10/accessing-sql-compact-from-sql-server.html
If you want to do a one off transfer from SQL Server Compact to SQL Server 2008, you can use my ExportSqlCe command line to in combination with sqlcmd to transfer the entire database
Is it possible to create a linked server in SQL Server 2005, which links to a SQL Server 2000 SP3?
Yes it is possible. Check the link http://msdn.microsoft.com/en-us/library/ms188279(v=SQL.90).aspx
i am trying to generate a script from sql 2005 database to sql 2000 database . After determining all the objects of database it is stopped and shows a message in error report that "Script failed for Server 'HOME\SQLEXPRESS'. (Microsoft.SqlServer.Express.Smo)"
anyone can suggest me what should i do to convert sql 2005 to sql 2000 database
See How to restore SQL 2005 DB to SQL 2000
I have a database that is on a SQL 2000 server, and I would like to make it a Sql 2005 express edition database.
What is needed to do in order to make that work?
/M
The cleanest way would be to create a new database in SQL 2005 and import all the objects in.
You can also backup and restore into the SQL 2005 environment. That will work as well