I want to ask is there any issues or risks involved in installation of SQL Server 2005 Enterprise Edition on SQL Server 2000 Enterprise Edition in production server?
Please tell me the guidelines in installation...
I want to ask is there any issues or risks involved in installation of SQL Server 2005 Enterprise Edition on SQL Server 2000 Enterprise Edition in production server?
Please tell me the guidelines in installation...
2000 and 2005 can exist side-by-side, you just have to use a named instance for at least one of them (only one can be the default instance).
If you are talking about upgrading, here are some good starting points:
http://searchsqlserver.techtarget.com/generic/0,295582,sid87_gci1269983,00.html
http://www.microsoft.com/sqlserver/2005/en/us/upgrading.aspx
Also get the 2005 upgrade advisor, which should highlight any potential issues in your specific environment:
http://www.microsoft.com/downloads/details.aspx?FamilyID=1470e86b-7e05-4322-a677-95ab44f12d75
If you re upgrading a SQL Server 2000 instance to Sql Server 2005 in place, I wouldn t recommend it. There are some differences in behavior that can cause applications to fail.
The one that I ran into had to do with default schemas and the SQL Server GUI. Before the 2005 version of SQL Server, I could use the GUI to create a database, create a user, make the user the owner of the database, and then the default schema for that database would be that user s username. In SQL Server 2005, I had to add the additional step of setting the default schema to that user s username. Without that, our tool for setting up new schemas failed.
Doing all of the setup in scripting worked the same as it had before, except that some of the names of the procedures had changed. That was much easier to track down than the default schema name issue, though.
In summary: major changes, so don t just do an upgrade-in-place.
I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...
In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
Is it possible to use the sqlcmd command to dump table structure the way it can be done with mysqldump?
Hi I have the following SP, however when I use LINQ to SQL it generates 2 multiple recordsets. For my sanity I am trying to fathom out what it is in the stored procedure that is doing this and would ...
I want to create a table in MS SQL Server 2005 to record details of certain system operations. As you can see from the table design below, every column apart from Details is is non nullable. CREATE ...
I love the new DATE datatype in SQL Server 2008, but when I compare a DATE field to a DATETIME field on a linked server (SQL 2005, in this case), like this: DECLARE @MyDate DATE SET @MyDate = CONVERT(...
How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8