5
votes
0
votes
can I configure hibernate properties to connect without using an instance name to sql server 2005?
Yes, you can. You set it up as you normally would in the connection string:
Server=(local);initial catalog=MyDataBase;Integrated Security=SSPI
…
5
votes
Convert SQL Server Database from 2005 to 2000
Generate a full script for your database in SQL2005, and change the "Script for Server Version" option to SQL Server 2000. You can now recreate your database on the SQL 2000 server. After this is c …
