you can not "convert" SQL Server 2005 database to SQL Server 2000 database. The otherway round is possible.
Madhu
While you cannot 'convert' the SQL 2005 database to a SQL 2000 format, you can script out the tables, views, functions, stored procedures, etc., then after checking those scripts for compatibility, you can run the scripts on SQL 2000 and re-create the database.
It would be nice if it were so simple as changing the compatibility level.
The physical files are different between SQL 2000 and SQL 2005, and to my knowledge, there is no current mechanism to 'downgrade' a database.
I think that you are left with my earlier suggestion about scripting out the database objects, and running those scripts in SQL 2000 to recreate a SQL 2000 database. Perhaps these links will help with scripting:
DDL -Script Database to File
http://www.wardyit.com/blog/blog/archive/2006/07/21/133.aspx
http://www.sqlteam.com/publish/scriptio
http://www.aspfaq.com/etiquette.asp id=5006
http://www.codeproject.com/dotnet/ScriptDatabase.asp
http://www.nigelrivett.net/DMO/DMOScriptAllDatabases.html
http://rac4sql.net/qalite_main.asp
DDL ¨CScript Data to file (Database Publishing Wizard)
http://www.microsoft.com/downloads/details.aspx FamilyID=29B4FFD8-AC3A-4481-B352-9B185619A901
use system sp sp_dbcmptlevel
Eg: EXEC sp_dbcmptlevel 'AdventureWorks', '80';
Madhu
in this case there is no need to degrade the copatibility level. You can script all the objects into a single file and the run the script in 2000. by this step your schema will be ready. Now you need to improt the data using import/export or ssis or simple insert into statment after configuring linked server.
Madhu
if its only 8 table then the best method will be
(a) Configure LinkedServer in 2000 for SQL Server 2005
(b) use your own script like Insert into tablename select *from <LinkedserverName>.databasename.owner.tablename
Madhu