Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Migration From Sql Server Express 2005 To Sql Server 2000 Enterprise


hi, i need some help here,
i made a simple data driven website in my development PC, at first, i used MS Access for my data base then i migrate it to sql server express 2005, and it works fine when i try to run it in my development PC with my IIS. but of course i will be deploying it to a real server, in our office were i will deploy my data driven site, we have a PC server Win Server 2003 with SQL Server 2000 Enterprise (im not pretty sure by the name but i know its not a free version, its something like a 2000 sql version with a word enterprise at the end).
so my question is, i am developing an ASPdotNET site originally used SQL server 2005 express,
how can i migrate my site to the Win Server 2003 and my database from SQL Server 2005 express to SQL server 2000 enterprise
will it work?? if not, what are the possible solution that i can do in cases like mine?
i used Visual Web Developer 2008 Express Ed. in making my sites, and its DOES NOT allow databases in SQL Server 2000!!!!!
it says "can't recognize the database"
i hope you can help me with this.
Thanks
-SALAMAT PO....=) 




View Complete Forum Thread with Replies

Related Forum Messages:
Migration From SQL 2000 Enterprise Server To The SQL 2005 Enterprise Server (64 Bit-Itanium Server)
We are migration few database from SQL 2000 Enterprise Server to the SQL 2005 Enterprise Server (64 bit-Itanium Server)

Problem :

- The performance difference observer was not much (Just 15-18%)

- The CPU Utilization goes to 100% immediately, when the software login screen appears and it sustains in between 90% to 100%

- Multi-User Access (3 or more concurrent users), the sql performance is tremendously slow.

Steps followed for Migration:

- We have used the backup and restore method to migrate the data from SQL 2000 Enterprise Server to the SQL 2005 Enterprise Server (64 bit-Itanium Server).

- We ran the DBCC DBREINDEX for each affected tables

- We executed the sp_updatestats procedure for all the tables

- Upgraded the DB compatibility version to 90

- Installed the SQL 2005 Enterprise Server (64 bit-Itanium Server) Service pack 2.

One thing that we observed, was the memory usage, on SQL 2000 the sqlservr.exe uses around 1.5 GB where as on the SQL 2005 its just 120 MB.

A normal select query on 2000 Server took 11-12 sec, having 10 lac records, and the same query on 2005 took 1 min (3-5 sec CPU process taken by sqlservr and rest by the Sever Management Studio.

The only differance noted was that on 2000 the entire data was displayed at one go where as in 2005 the data was displayed at the 1st sec, and was filling the rest in the buffer, and to finally display entire data it took 1 min.

Also

when we run this query

select * from sys.dm_os_sys_info

one column os_priority_class shows a value = 32 ? what does this means.

In the MSSQLSERVER SERVICES, properties, there is a parameter displaying value

Advanced > Running Under 64 bit OS = No ? what does this means.


Could anyone pls suggest as to how to increase the sqlservr.exe memory area, and also how the enhance the performance.

View Replies !
Migration To Sql Express 2005 From Sql Server 2000
The Environment:
I have an old Windows 2000 BackOffice server (Retail but with no media) that hosts a small database (<50mb) that is hosted on the local SQL Server 2000 installation.   The network has 8 PCs that connect to the database via ODBC connections. I just purchased a new server running Windows Server 2003 Standard Edition (OEM).
 
What I€™m Trying to Accomplish:
I want to decommission the old 2000 BackOffice server and move the database to the new 2003 Standard server.  I€™m trying to do this on the cheap, so I really want to avoid spending thousands on a new SQL server license. 
 
Things I€™m Considering:
1) Migrating the database from SQL 2000 Standard to SQL 2005 Express
2) Moving the database from SQL 2000 Standard to MS Access
3) Purchasing SQL Server 2005 licenses and upgrading
4) Purchasing SQL 2000 Server licenses
 
 
The options are pretty much listed in my order of preference.  I€™d like to move from SQL 2000 Server to SQL 2005 Express, but I haven€™t really found a lot of material on the subject since people customarily go the other way.
 
Any advice or alternative recommendations would be much appreciated!
 

View Replies !
Can SQL Server 2005 Express Edition Coexist With SQL Server 2000 Enterprise?
 

Not sure if this was posted but having a hard time finding an answer.
I'm currently running sql server 2000 enterprise edition on my machine and was wondering what would happen if i installed 2005 express edition and vice versa? I've found many blogs and post about compatibility issues with the 2005 Express Beta version but couldn't find any news with full version. It would be much appreciated if someone can help me out with this problem.
Thanks!

View Replies !
Migration From SQL Server Express To SQL Server 2000?
Note from moderator XIII: originally posted in Club starter kit but was found to be more appropriate in this forum:
Hello,What are the steps I have to follow to migrate the SQL Express Edition to the SQL 2000 Edition for my Club Starter Kit?Any URL or hint or trick or tips?Thanks,Mudassir

View Replies !
SQL Server 2000 Migration To SQL Server 2005 Collation Change - Method?
Scenario
Recently moved a SQL2000 database to SQL2005.
Collation on SQL 2000 database server was SQL_Latin1_General_CP1_CI_AS
Colaltion on SQL 2005 database server is Latin1_General_CI_AS

After restoring the SQL 2000 database on SQL 2005 we observed that the database collation was SQL_Latin1_General_CP1_CI_AS. We have altered the database collation to Latin1_General_CI_AS. We understand this will work for all new objects created on the database but existing objects (prior to the collation change) will continue to have the 'SQL_Latin1_General_CP1_CI_AS' collation.
 
What is the best method to change the collation of the older columns to 'Latin1_General_CI_AS' -
1) Run ALTER TABLE ALTER COLUMN <colname> <datatype> COLLATE Latin1_General_CI_AS <nullability>
on each varchar/char column
 
or
 
2) For each table
BCP out data
DROP TABLE
RECREATE TABLE (taking the new collation Latin1_General_CI_AS)
BCP in data
 
3) Other methods?
 
Thanks in advance
David.

View Replies !
SQL Server 2000 Databases To SQL Server 2005? Enterprise Manager And Management Stuio At The Same Server?
When I proposed start to use SQL Server 2005 for new VS 2005 web sites, one of my co-workers responded that
we will update the old SQL Server 2000 databases to SQL Server 2005 when we are ready to use 2005 SQL Server.

Questions:
1. Any expected problems to upgrade old 2000 databases to new 2005 SQL Server?
2. I have installed both 2005/Management Studio Express and 2000/Enterprise Manager in my PC.  Any expected
    problems when running both 2000 and 2005 SQL Server at the same database server?
3.  What is the best configuration for running SQL Server 2005 when we have old 2000 databases?  Upgade or not upgrade?  

TIA,
Jeffrey

View Replies !
Simple Migration From MySQL To SQL Server Express 2005?
Normally I'd go and write a bunch of code for doing it manually... But instead of that, maybe there is a smarter way?

What I know is that you can get some kind of dump out of MySQL but I would be very surprised if that could be directly read into SQL Express ??

So if you have a few step guide to migrate from MySQL to SQL Express, I am all ears (and eyes)!

Thanks!

(Yes I am aware there is some DTS thingy for this but could not find it in the Express folders)

View Replies !
Migration From SQL Server 2000 To 2005
I have a fairly large web application that was built with SQL Server 2000 and .NET 1.1.  We're planning on moving to .NET 2.0 eventually, but there's a lot of work to be done before that happens.  In the short term, we're looking to purchase a new database server and would like to upgrade to SQL Server 2005 at the same time.  Is it as simple as recreating our databases on this new system and changing the connection string, or are there other gotchas?  As far as what we're doing with SQL Server 2000, it's really nothing more than tables, views, and stored procedures.  Thanks in advance for any advice.

View Replies !
SQL Server 2000 To 2005 Migration
I am in a process of migration our current SQL Server 2000 (Standard Edition with SP3 running on 32 bit windows 2000 server) to SQL Server 2005 (Standard with SP1 running on X64 windows 2003 server)?

For migration does current SQL Server 2000 requires Service Pack 4 Installed?   

View Replies !
SQL 2000 To SQL 2005 Server Migration...
OK so I'm just the Network Admin here, but our DBA's are off doing other stuff. So I thought I may inquire here about how the easiest way to migrate from SQL Server 2000 to 2005? The first server I'd like to migrate is just databases with a few users, no DTS packages or anything like that... The only problem is that there are several hundred db's, so moving them one at a time is not an option. Has anyone here had successful experience with doing this? Thanks in advance for your help!
-Andrew

View Replies !
Windows Server 2008 Enterprise &&amp; SQL Server 2005 Express Reporting Services
 

Does anyone know how to properly install SQL server 2005 express reporting services on windows server 2008. Whenever i try to access the report manager I get an error "Cannot access the remote server" even though the report server is on the local machine. I only have the web server role installed on the server. Im still quite a newbie at managing servers so please keep it as simple as possible.
Thanks
Matthew

View Replies !
Cannot Upgrade SQL Server 2005 Express To SP2 After Upgrading SQL Server 2005 Enterprise To SP2
How do I upgrade Sql Server 2005 Express to SP2 if I also have SQL Server 2005 Enterprise SP2 already on the same box?  I installed Sql Server 2005 Enterprise first, then applied SP2, then installed Visual Studio 2008 (which installed SQL Server 2005 Express).
 
When I try to upgrade Sql Server 2005 Express to SP2 using the special Express edition of SP2, I get an error message that says "None of the selected features can be installed".  I end up having to cancel the install of SP2.
 
I'm left with SQL Server 2005 at level 9.0.3054  and SQL Server 2005 Express at 9.0.3042.  How can I bring SQL Server Express 2005 to the same level as SQL Server 2005 Entperprise?

View Replies !
Upgrading SQL Server 2005 Express To SQL Server 2005 Enterprise Edition
Hello!! How can I upgrade from SQL Server 2005 Express Edition to SQL Server 2005 Enterprise Edition? I see allot of example of upgrading from SQL Server 2000 to SQL Server 2005, but no example on upgrading from SQL Server 2005 Express to SQL Server 2005 Enterprise or Standard. Is this possible?

View Replies !
Migration Of VB Net 2005 (Pro) App Using Access 2000 DB (DAO &&amp; ADO) To SQL Express
I've downloaded the migration tool to convert an Access 2000 DB to a SQL DB. The VB code utilizes DAO (3.6) for hourly automatic compaction and the creation of an encrypted security database. ADO is used for the data maintenance functions. I expect the current connection methodology of ODBC using Jet 4.0 will need to be modified (many articles here address this). All the SQL code is inline and also must be modified. The Coldfusion code utilizes Micrsoft Access with Unicode via an ODBC connection with only SQL Select statements. At another job, I migrated an Informix 7 database to MS SQL 7 and for the most part the SQL code remained the same except for the wildcard spec from * to %.

I'm looking for insights and/or shortcuts on this effort, primarily in the SQL command mods area.  I'm perusing the threads here as we speak, but hoped someone knew of a specific thread I could go to....laziness is alive and well for us chronologically gifted people, i.e. over 55.

Any help or links are greatly appreciated!

View Replies !
Migration SQL Server 2000 To SQL Server 2005
Hi people,I'm tring to migrate Sql Server 2000 to SQL Server 2005 using "Copy Database Wizard" but i get the following error:

- Add log for package (Success)
- Add task for transferring database objects (Success)
- Create package (Success)
- Start SQL Server Agent Job (Success)
- Execute SQL Server Agent Job (Error)
Messages
* The job failed.  Check the event log on the destination server for
details. (Copy Database Wizard)

When I take a look at 'Event viewer' on the SQL 2005 server, the following
error is displayed;

InnerException-->An error has occurred while establishing a connection to
the server.
When connecting to SQL Server 2005,
this failure may be caused by the fact
that under the default settings SQL Server does not allow remote connections.
(provider: Named Pipes Provider, error: 40 - Could not open a connection to
SQL Server)

I try this link but not success.
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=752092&SiteID=1
Can anyone help me?

View Replies !
Migration From Sql Server 2000 To Sql Server 2005?
Hi

Our costumer is going to install new hardware.
Actually he is using 2 servers which both have windows 2000 server (+ AD) and sql server 2000 installed. On the new servers he will use windows 2003 and sql server 2005 The hard part will be migrating sql server 2000 to sql server 2005. I have read (not 100%, though) the SQL2005UpgradeTechRef document and downloaded SQLUASetup.exe to be ready (microsoft sql server upgrade analyzer software)

But actually i want to know what is best upgrade path and what are your experience. Is there already a got (or better or perfect) document availabe for the sql server 2000 to sql server 2005 sql server side by side upgrade. Please help! thanks

View Replies !
Migration From SQL Server 2000 To SQL Server 2005
Hello Gurus:

My database is running right now at SQL Server 2000 Enterprise Edition. We would like to upgrade it to SQL server 2005 Standard Edition.

Since this database was upgraded from MS Access 2000 to SQL server 2000. This database is accessed by a proprietary application. I don't know some of the details about this application.

There is one more issue with this database, replication was implemented earlier and now it is disabled.


I am thinking that to take a full backup from SQL server 2000 and restore it in SQL server 2005. What do you think?

Please let me know if you have any other idea.

I have another question for you. Right now replication is disabled and I restore SQL server 2000 database to SQL server 2005. Would there be any problem when we try to implement replication again?

Thanks in advance.

Regards,
Arunesh

View Replies !
Migration From SQL Server 2000 To Sql Server 2005
Hello,

We want to migrate our SQL Server 2000 Databases to SQL Server 2005 including all objects, sprocs, views, jobs, securty, DTS Packages, etc. Pretty much everything.. If anyone has done this in the past for enterprise level databases, I would greatly appreciate it if they could send me some documentation, references, pointers.

Thanks
Russel

View Replies !
SQL Server 2000 To 2005 Data Migration
1) We have OLTP DB on 2000 & OLAP DB on 2005.

2) We have decided to use SSIS for migration and interface is BIDS to develop, build, deploy & install SSIS packages.

3) Initial full migration is simple with column mapping and queries.

4) Incremental nightly scheduled migration is based on datetime value of source table column versus datetime value of end of most recent migration.

5) Inserts, updates and deletes are allowed in source. Whatever is updated and deleted in source I am finding the PK's via query compare via linked server in stored proc & deleting all these records from target all this in stored proc.

6) Now I have to pass these PK's along with inserted PK's to select statement of SSIS package against source to insert into target.

7) We even have to encrypt some tables colmns data while reading from source so that it is secure in network and gets into target database as such requiring decryption for reports and front end display.

8) Is my approach okay? How do I pass the PK's to SSIS package SQL statement. How, where and when do I fit in encryption part.

9) Are there any better ways that you can think of.

View Replies !
RPC Error Since Migration From SQL Server 2000 To 2005
Since a migration from SQL Server 2000 to 2005 I get the following error:

Error: 8026, Severity: 16, State: 71

The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Parameter 2 (""): The RPC is marked with the metadata unchanged flag, but data type 0xAD has an actual length different from the one sent last time.

It results on the clientside in a OleDB 80040E14 error, with the same message.

The stored procedure looks like:
ALTER  PROCEDURE [dbo].[spLoadSomeStuff]
   @EventID eventref
,  @RowVersion timestamp output
,  @StartTime Datetime output
,  @EndTime Datetime output
,  @Description varchar(255) output
AS
SELECT @RowVersion=RowVersion
,  @StartTime=StartTime
,  @EndTime=EndTime
,  @Description=Description
FROM   logEvent
WHERE EventID = @EventID

The error happens when a stored procedure is called (via oledb, {rpc ' + StoredProc + '}')  more than once and when the new output parameter data results in a larger string.

There is a work around to this problem: unpreparing the command after executing.

So it seems to me the problem lies with the wrong preparation of the command. I bind the parameters myself, with the maximum data length to be fetched.

Can someone tell me if this can be resolved?

I hope I haven€™t gone into this much trouble of preparing a command and making it all optimal, to loose those benefits by unpreparing each time.

Thanks in advance,

Martijn

View Replies !
Data Migration From SQL 2000 To SQL Sever 2005 Express
We have a SQL Server 2000 and want to migrate to SQL Server 2005 Express.

It's possible?
SQL Server 2005 Express have support to do this?

View Replies !
SQL 2005 Express On Server 2k3 Enterprise
After a few failed installs I have gotten SQL2k5Exp installed.  I have update my .net and my XML.  I had the server running fine for about a week.  The server still 'runs' fine, but when I connect to it with Server managment studio express I can't do anything with it.  It will not allow me to expand the 'System Databases' It gives the error:

"Failed to retrieve data for this request. (Microsoft.SqlServer.Express.SmoEnum)

Additional information:

     An exception occured while executing a Transact-SQL statement or batch.

     (Microsoft.SqlServer.Express.ConnectionInfo)

          A transport-level error has occurred when receiving results from the server.  (provider: Shared Memory Provider, error: 0 - The pipe has been ended.) (Microsoft SQL Server, Error: 109) "

I get just about the same error if I try to attach a database, the only change is the error code at the end.

After this error the SQL server service stops.  I can restart it from the Services snap-in, but not inside SMSE.  It will start and stop if i try to start it in SMSE.

I also find these types of errors in my event log:

"SQL Server is not ready to accept new client connections; the connection has been closed. Wait a few minutes before trying again. If you have access to the error log, look for the informational message that indicates that SQL Server is ready before trying to connect again. [CLIENT: <local machine>]"

"The SQL Server (SQLEXPRESS) service terminated unexpectedly. It has done this 8 time(s)."

"The SQL Server Active Directory Helper service terminated with service-specific error 3221225572 (0xC0000064)."

Any ideas on this?

View Replies !
Problem To Install SQL Server 2005 Enterprise Edition 64 Bits On A Cluster With 4 Nodes, With Sql Server 2000 Already Installed
 

Hi i tray to install a new Virtual SQL Server independent for a SQL Server already installed and when the setup comes to install SQL Server Database commponets it fails, because tray to install on a drive that is not part of the new gruop resource. This is part of the log.
 
MSI (s) (BC8) [11:26:43:107]: Note: 1: 2262 2: Error 3: -2147287038

MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServicePrefixRS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 property. Its value is 'SQLServer2005ReportServerUser$CIOSAN04$'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServicePrefixSSIS.9754C2F0_FC41_4ADF_9C17_1D45EA972478 property. Its value is 'SQLServer2005DTSUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServicePrefixRS.6080319C_1466_426E_9E7A_1DD555143E0A property. Its value is 'SQLServer2005ReportServerUser$CIOSAN04$'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServicePrefixSSIS.6080319C_1466_426E_9E7A_1DD555143E0A property. Its value is 'SQLServer2005DTSUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 property. Its value is 'SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.2FC2D269_8625_4826_BB3F_F9059090CB38 property. Its value is 'CIOSAN04SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE property. Its value is 'SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.03BE59F9_3DFA_413B_A99C_B95CA31A7BFE property. Its value is 'CIOSAN04SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 property. Its value is 'SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupSQLBrowser.879C8BDB_884A_4C3C_80C3_3452EA2B8439 property. Its value is 'CIOSAN04SQLServer2005SQLBrowserUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'SQLServer2005MSSQLServerADHelperUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupADHelper.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'CIOSAN04SQLServer2005MSSQLServerADHelperUser$CIOSAN04'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding InstanceRegKey.4695FFBD_7951_480B_8B19_2D6E3E1CF9A6 property. Its value is 'Microsoft SQL ServerMSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding DataInstanceTxt.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'S:CIOSQL02SQLSERVERMSSQL'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceNameSQL.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupAgent.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'SQLServer2005SQLAgentUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupAgent.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'CIOSAN04SQLServer2005SQLAgentUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceNameAgent.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'SQLSERVERAGENT'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceGroupAgent.EAD22282_F1AF_4119_B1F9_C9F1DCBC62FF property. Its value is 'SQLServer2005SQLAgentUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding QuotedServiceGroupAgent.EAD22282_F1AF_4119_B1F9_C9F1DCBC62FF property. Its value is 'CIOSAN04SQLServer2005SQLAgentUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding InstanceRegKey.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'Microsoft SQL ServerMSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding InstanceName.96E1321F_B7D1_4051_BEF1_FE74AC590F64 property. Its value is 'MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding ServiceNameAgent.0CAFB83E_07D8_4C80_B8EB_7596DC8C4D50 property. Its value is 'SQLSERVERAGENT'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding DataInstanceTxt.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'S:CIOSQL02SQLSERVERMSSQL'.
MSI (s) (BC!88) [11:27:17:060]: PROPERTY CHANGE: Adding InstMap.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'MSSQLSERVER'.
RegOpenKeyEx failed on Key(SoftwareMicrosoftMSSQLServerMSSQLServerParameters) with returncode 2
<Func Name='ReadSkuInfo'>
<EndFunc Name='ReadSkuInfo' Return='0' GetLastError='0'>
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding checksum.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is '#x38393366666630656238326230343762313035313638323130306362396365633134666664643436343762663361653233323636643238323938326634653832666465333033616133633139386230643935613333396364616634336339353261666565393461643966373533636330323465656665336132653465626434616531643037616530646438376665653038303937336334366661333639356265383735363763663662636366333739383032633200'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding Namechecksum.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'Enterprise Edition (64-bit)'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding ServiceGroupSQL.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'SQLServer2005MSSQLUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding QuotedServiceGroupSQL.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'CIOSAN04SQLServer2005MSSQLUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding ServiceNameSQL.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding ServiceGroupFTS.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'SQLServer2005MSFTEUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding QuotedServiceGroupFTS.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'CIOSAN04SQLServer2005MSFTEUser$CIOSAN04$MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding InstId.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding InstanceName.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'MSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding InstanceRegKey.B2156BC9_6CE8_422F_A957_E99A65256B1D property. Its value is 'Microsoft SQL ServerMSSQLSERVER'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding ServiceNameSQL.443D542A_6987_46FB_A39B_41BB29B0D2C6 property. Its value is 'MSSQLSERVER'.
<Func Name='GetSkuIt'>
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding checksum.CB2C9331_83B7_4803_97B5_442EFDC583D7 property. Its value is '**********'.
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding Namechecksum.CB2C9331_83B7_4803_97B5_442EFDC583D7 property. Its value is 'Enterprise Edition (64-bit)'.
<Func Name='GetSkuIt'>
MSI (s) (BC!88) [11:27:17:076]: PROPERTY CHANGE: Adding checksum.7354AFCB_913B_4E9F_B76C_2376101FDE0C property. Its value is '#x38393366666630656238326230343762313035313638323130306362396365633134666664643436343762663361653233323636643238323938326634653832666465333033616133633139386230643935613333396364616634336339353261666565393461643966373533636330323465656665336132653465626434616531643037616530646438376665653038303937336334366661333639356265383735363763663662636366333739383032633200'.

View Replies !
Using MS SQL Server 2005 Enterprise Manager With MS SQL Server 2000
Hi Everyone,Most of our MS SQL Servers are still running on SQL 2000, but being Iwill soon be upgrading my workstation to Vista Business I'd like toinstall MS SQL 2005 Enterprise Manager to manage them all. When Itried to install MS SQL 2000 Enterprise Manager on Vista, it gave me amessage saying it's not compatible, so I'll have to use 2005 I guess.We have LOTS of DTS scripts on our SQL 2000 server, and will 2005 EMwork with these okay? Also I want to make sure SQL 2005 EnterpriseManager won't be adding to, changing, or 'upgrading' the DTS scripts oranything on the SQL 2000 servers as we still have folks using SQL 2000Enterprise Manager.Thanks for any suggestions. I'm always leery when using cross-versionsof Microsoft applications because they are often incompatible or theydo squirly things that often break stuff.Thanks --Alex

View Replies !
Enterprise Manager And SQL Server Express 2005
Hi all,

I m new to SQL Server.

I have installted SQL Server Express 2005 in one machine in my network. On the same machine i am trying to install Express Manager , while installtion it is giving error for SQL (SMO) or SQL Management Studio Component is not installed.

When i try to connect the same PC database from another machine where SQL Server 2000 is installted and it is running well. While connectiog from SQL enterprise Manager from that PC it is also showing the same error.

Can any one help me to know what is the uses of SMO and how can the same be installted so that i can access the database from Express Manager or Sql enterprise manager.

One more thing, is there any other GUI tool avalilable to access and manage the Database.

I have also installted VB .Net 2005 on the same pc.

thanks.
harsh

View Replies !
Upgrade From SQL Server 2005 Express To 2005 Enterprise Fails
Hi

I am trying to upgrade SQL Server 2005 Express to SQL Server 2005 Enterprise Edition.
(As a Preparation to install SQLServer2005 Service Pack 2 (CTP))

I tried to upgrade a particular Instance (OFFICESERVERS, which was based on SQL Server 2005 Express ).

During the upgrade I get a message saying that ...

.....Your upgrade is blocked because of edition upgrade rules.....

All other components I selected for Installation are propertly installed (Analysis, Reporting)

The setup log contains the following detail information:

---- Context -----------------------------------------------
Setting status of unmanaged components and removing unmanaged resources

Error Code: 29543
MSI (s) (DC!C8) [13:57:26:265]: Product: Microsoft SQL Server 2005 -- Error 29543. Your upgrade is blocked. For more information about upgrade support, see the "Version and Edition Upgrades" and "Hardware and Software Requirements" topics in SQL Server 2005 Setup Help or SQL Server 2005 Books Online.
Edition check:
Your upgrade is blocked because of edition upgrade rules. For more information about edition upgrades, see the Version and Edition Upgrades topic in SQL Server 2005 Setup Help or SQL Server 2005 Books Online.

Error 29543. Your upgrade is blocked. For more information about upgrade support, see the "Version and Edition Upgrades" and "Hardware and Software Requirements" topics in SQL Server 2005 Setup Help or SQL Server 2005 Books Online.
Edition check:
Your upgrade is blocked because of edition upgrade rules. For more information about edition upgrades, see the Version and Edition Upgrades topic in SQL Server 2005 Setup Help or SQL Server 2005 Books Online.
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='0'>
Doing Action: ValidateUpgrade
PerfTime Start: ValidateUpgrade : Fri Dec 29 13:57:26 2006
<Func Name='ValidateUpgrade'>
<Func Name='updateFeatureSellection'>
        Error Code: 0x80077367 (29543)
Windows Error Text:   Source File Name: sqlcaupgradeproduct.cpp
Compiler Timestamp: Mon Sep 19 01:07:45 2005
     Function Name: sqls::UpgradeProduct::CanUpgrade
Source Line Number: 142

---- Context -----------------------------------------------

I also tried to explicitly upgrade the OFFICESERVERS instance by executing Setup from the command shell:

start /wait setup.exe  ADDLOCAL=SQL_Engine INSTANCENAME=OFFICESERVERS UPGRADE=SQL_Engine SKUU
PGRADE=1 /qb

The result is the same, i.e.... Your upgrade is blocked because of edition upgrade rules...

Does anybody know about this problem?
Some more information about the system:
W2K3 R2 Enterprise Edition
WSS3.0
MOSS2007
previously installed SQL Server 2005 Express Edition (Version 9.00.2047.00)

Kinde regards
Andreas

 

View Replies !
Can I Upgrade From Sql 2005 Express To Sql Server 2005 Enterprise Edition ?
if i upgrade from sql server 2005 expressto sql server 2005 enterprise can i do it ?
am i need to uninstall 2005 express before ?

View Replies !
Sql Server 2005 Express/management &&amp; Enterprise Manager
I have presently installed on my local computer Enterprise Manager for access to our remote sql server. May I install sql server 2005 express and sql server  management studio express on my local computer without causing conflicts with Enterprise Manager?

 

thanks,

damiata

View Replies !
Remotely Register SQL Server 2005 Express In Enterprise Manager
 
I have SQL Server 2005 Express installed on a windows server 2003 standard edition. I have configured the windows firewall to allow exceptions for sqlservr.exe and sqlbrowser.exe. I have enabled remote and local connections using tcp/ip & Named Pipes through the Sql Server Surface Area Connection utility. I am able to telnet into the server with: telnet <server ip> <1433>.
 
Here is the strange part: I am able to connect to the Sql Server remotely from a development machine via Sql Server Management Studio Express, but I am unable to connect to the Sql Server from the same development machine by registering it in Sql Server Enterprise Manager...Is it possible to register SQL Express through Enterprise Manager?
 
When registering the SQL Express DB in Enterprise Manager I tried both just the (IP Address) of the server and the (IP AddressSQLExpress) as the server/host but I am getting the following errors from enterprise manager:
 
Just the (IP Address) as the server/host:
Invalid Connection.
ConnectionOpen( Invalid Instance())
 
(IP AddressSQLEXPRESS) as the server/host:
Sql Server does not exist or access denied. ConnectOpen(Connect()).
 
Any idea why I can€™t register/mount the instance remotely in Enterprise Manager
but I can in Sql Server Management Studio Express?
 
Thanks,
 
Greg

View Replies !
SQL Server 2005 Installation Problems With SQL Server Express && SQL Server 2000
Hi Guys,
I have had SQL Server Express and Sql Server Management Studio Express installed on my machine for some time and recently tried to install a trial of SQL Server 2005 as well.  (Yes, I'm migrating from Visual Studio Express to Visual Studio Professional, just as in tended!)
Everything went fine except that nothing seemed to be installed.  I searched in all the obvious places - both on the Start/Programs menu and on the hard-drive: nothing.
A check under Add/Remove Programs showed that Sql Server 2005 Express was installed, but called SQL Server 2005.
So after a number of retries in which the install program kept saying that there was nothing to install, I selected every option under Advanced in the intall process.  This resulted in stuff being installed and I now have SQL Server 2005 running on my machine, but no SQL Server Manager icon.
My questions are:

Where can I find the SQL Server Manager executeable?
Has anyone installed SQL Server Express, SQL Server Mangement Studio Express, SQL Server 2005 and SQL Server Management Studio on a single machine successfully?  If so, what order did you install them in?  (I'm planning on uninstalling everything SXQL Server related and starting again.)
Thanks very much for your help.
Regards
Gary

View Replies !
Restoring A Sql 2000 Db In Sql 2005 Express Db With Sql Server Management Studio Express
As I said in the subject I've a problem trying to restore a backup of a previous db created in sql 2000 server

When I try to do it I recive the following message:

____________________________________________________________________________________
System.Data.SqlClient.SqlError: Il set di backup include il backup di un database diverso dal database 'musica2007' esistente. (Microsoft.SqlServer.Express.Smo)

------------------------------
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&LinkId=20476

------------------------------
Program Location:

   in Microsoft.SqlServer.Management.Smo.ExecutionManager.ExecuteNonQueryWithMessage(StringCollection queries, ServerMessageEventHandler dbccMessageHandler, Boolean errorsAsMessages)
   in Microsoft.SqlServer.Management.Smo.BackupRestoreBase.ExecuteSql(Server server, StringCollection queries)
   in Microsoft.SqlServer.Management.Smo.Restore.SqlRestore(Server srv)
____________________________________________________________________________________

What should I do? What's the probem? I've already tried to look for the solution in other messages but I didn't find anything..... Thanks for help,,, by Luke

View Replies !
Cannot Upgrade MSDE 2000 Release A To SQL Server 2005 Express Using SQL Server Authentication
 

I'm trying to upgrade the Default Instance of MSDE 2000 Release A which is installed with Mixed Mode and strong password to SQL Server 2005 Express in a Windows 2000 Server with SP4.  On the Upgrade Logon Information screen, if I select SQL Server Authentication Mode, it will give me this message:

SQL Server Setup Cannot Upgrade the specified instance by using SQL Server Credential.  You must use Windows Authentication credential for the upgrade.

Thanks for any help.

View Replies !
How To Create A Copy Of SQL Server 2000 Database In SQL Server 2005 Express?
I have a database called 'DB1' in SQL Server 2000. I want to create the same database in SQL Server 2005 Express including the original data in tables.
How would I do that? I cannot find any option to do this upgrade in SQL Server Management Studio.

View Replies !
How To Restore Sql Server 2000 Db Backup Into Sql Server 2005 Express Edition
Hi Friends,I have installed SQL server 2005 Express Edition and SQL Server managementI have a SQL server 2000 db backup file. I try create a new database in my SQL server 2005 express Edition and try restore that backup file from device, it only searching for file with *.bak and *.tm extension! I tried generate backup file with .bak extension and tried restore into SQl server 2005 express edition but still it is not allowing to do so! I also tried copy my database's data file and log file and paste it under SQL server 2005 express edition Data folder and still not able to read the tables.Is that any ways to do restoring for this SQL server 2000 backup file into SQL server 2005 express edition! Anybody can help me on this please...:eek:

View Replies !
Connection Error To The SQL Server 2005 Express On Windows 2000 Server.
 

Hi,
 
My application use SQL Native Client to connect to the SQL Server 2005 Express database instance.
It uses IRowsetFastLoad for bulk insert and IRowset for other accessings.
 
When this application runs at Windows 2000 Server,
and there is another running instance of SQL Server 2000 for other service,
my program fails to connect the the SS2005 express after running about 40 hours.
The error message is 'Initialize datasource error(0x80004005)'
 
The memory usage of SS2005 express is over 600 MB even though I limited the memory usage to 200MB using sp_configure stored procedure.  Another programs also fail to running. For example, the ftp client return error message
like this, 'No buffer space is supported.' and fails to connect to FTP server.
 
Here is my code.
Please check if there are any problems like threading models,MDAC version ect...
 
-------------------------------------------------------------
 

 HRESULT hr = CoInitialize(NULL);
 if ( S_OK != hr )
 {
    return FALSE;
 }

 hr = CoCreateInstance(CLSID_SQLNCLI, NULL, CLSCTX_INPROC_SERVER, IID_IDBInitialize, (void**)&m_pIDBInitialize);
 if ( S_OK != hr )
 {
    return FALSE;
 }


 rgProperty[0].dwPropertyID = DBPROP_INIT_DATASOURCE;
 rgProperty[0].dwOptions  = DBPROPOPTIONS_REQUIRED;
// rgProperty[0].dwStatus  = ; <-- not required in input or consumer
 rgProperty[0].colid   = DB_NULLID;
 rgProperty[0].vValue.vt  = VT_BSTR;
 rgProperty[0].vValue.bstrVal= bstrDataSource;
 

 rgProperty[1].dwPropertyID = DBPROP_INIT_CATALOG;
 rgProperty[1].dwOptions  = DBPROPOPTIONS_OPTIONAL;//DBPROPOPTIONS_REQUIRED;
// rgProperty[1].dwStatus  = ; <-- not required in input or consumer
 rgProperty[1].colid   = DB_NULLID;
 rgProperty[1].vValue.vt  = VT_BSTR;
 rgProperty[1].vValue.bstrVal= bstrCatalog;
 

 rgProperty[2].dwPropertyID = DBPROP_AUTH_USERID;
 rgProperty[2].dwOptions  = DBPROPOPTIONS_REQUIRED;
// rgProperty[2].dwStatus  = ; <-- not required in input or consumer
 rgProperty[2].colid   = DB_NULLID;
 rgProperty[2].vValue.vt  = VT_BSTR;
 rgProperty[2].vValue.bstrVal= bstrUserID;
 

 rgProperty[3].dwPropertyID = DBPROP_AUTH_PASSWORD;
 rgProperty[3].dwOptions  = DBPROPOPTIONS_REQUIRED;
// rgProperty[3].dwStatus  = ; <-- not required in input or consumer
 rgProperty[3].colid   = DB_NULLID;
 rgProperty[3].vValue.vt  = VT_BSTR;
 rgProperty[3].vValue.bstrVal= bstrPassword;
 

 rgPropertySets[0].rgProperties  = rgProperty;
 rgPropertySets[0].cProperties  = cPropertySets;
 rgPropertySets[0].guidPropertySet = DBPROPSET_DBINIT;
 

 hr = m_pIDBProperties->SetProperties(1, rgPropertySets);
 if ( S_OK != hr )
 {
  return FALSE;
 }


 hr = m_pIDBInitialize->Initialize();
 if ( S_OK != hr )
 {
  return FALSE;
 }
 
 // Create Session
 hr = m_pIDBInitialize->QueryInterface(IID_IDBCreateSession,(void**)&m_pIDBCreateSession);
 if ( S_OK != hr )
 {
   return FALSE;
 }
 hr = m_pIDBCreateSession->CreateSession(NULL,IID_IOpenRowset,&m_pIUnkSession);
 if ( S_OK != hr )
 {
  return FALSE;
 }
 

View Replies !
Upgrading SQL Server 2000 Enterprise Edition To SQL Server 2005 Standard Edition
 

Hi,
 
I would like to find out if there is any way to upgrade SQL Server 2000 (Ent) to 2005 (STD)
 
The Instance has many logins and jobs etc and I dont want to loose those
 
A document or some advice on how to go about it would help
 
Thanks

View Replies !
Can I Install SQL 2005 Server Express On A Machine That Has SQL 2000 Server
I have a dedicated server running SQL Server 2000 on Windows 2003.  Can I install SQL Server 2005 express so that I can run sites developed with VWD Express.  I still have the sites that need to use the sql 2000 server.
 Thanks

View Replies !
Local SQL Server 2005 Express And Host With SQL Server 2000
I'm creating an app and have SQL Server 2005 Express installed.  Most of the hosts now offering SQL Server 2005 are a bit pricey compared to those only offering 2000.  Will I have any difficulty uploading my site and running the db on SQL 2000?  Thanks in advance.

View Replies !
How Migrate SQL Server 2000 Database To SQL Server 2005 Express
I  have a  SQL server 2000 database.I have to migrate it to SQL Server 2005 Express.But I don't know how to do.
Is any one can help me ?
Thanks

View Replies !
Migrate Data From SQL Server 2000 To SQL 2005 Server Express
Hello:Does Sql Server 2005 Express support data migration  from Sql Server 2000.

View Replies !
What Are The Difference Between SQL Server 2000 And SQL Server 2005 Express Edition
What are the difference between SQL Server 2000 and SQL Server 2005 Express Edition.?

Or where i can find the list of differences. ?

Can SQL Server 2000 and SQL Server 2005 Express Edition can be used interchangeably for basic database operations?

Hope to get some response soon.

Regards

Sanjeev

View Replies !
Problem Connecting To Server 2005 Express On Win Server 2000 Sp4
I have installed Server 2005 Express on a pc running Windows Server 2000 sp4 which I want to use as the server for a network of pcs. However, I am unable to login to SQL Express on this machine from Sql Server Management Studio Express. I am in mixed mode and trying to connect with Server Authentication. I get various error messages none of which seem to point to the problem.
 
Networked to this pc are several other machines running Xp Professional/Home sp2 and if I install SQL Express on one of these I can log in to SQL Express on that machine without any problem. I can also connect to it via the network from the Win Server 2k machine.
 
Does anyone know of any issues when installing Server 2005 Express  on a pc running Windows Server 2000 sp4.
 
Any help would be appreciated.
 
Thanks.

View Replies !
How To Copy A SQL Server 2000 Database To SQL Server 2005 Express
Hi,

how can I import (restore) a backup of SQL Server 2000 database to SQL Server 2005 Express?

Thank you all

 

View Replies !
Can Sql Server Express 2005 Run A Sql Server 2000 Database?
Should be a quick question:I've got a client with a Sql Server 2000 database.  He wants to hook it up to a server that is only running Sql Server Express 2005.  Can this work?
Thanks!

View Replies !
SQL Server 2000 And SQL Server 2005 Express Edition
Hi,Can SQL Server 2000 and SQL Server 2005 Express Edition installed in a same machine. Will there be any conflict?Regards,Swami

View Replies !
Access SQL Server 2005 EXPRESS From SQL Server 2000?
I have just acquired my first root server (Microsoft Windows Server 2003) to run a lightly used ASP application. I installed SQL Server Express 2005 on the server and the application works just fine. The problem is that I cannot access the SQL database on the server from my local computer that is running SQL Server 2000 Developer.
 
Please note the following:
1) I can access the server database (2005 Express) from a computer that is running SQL 2005 developer.
2) I can access other servers that are running non-EXPRESS versions of SQL 2005 from my computer (which is running SQL 2000)
 
Thus my question is:
Is there some kind of limitation or required setting in SQL Server Express to allow remote connections from SQL 2000?
 
Remember - I CAN access the database remotely using SQL 2005, just not SQL 2000.
 
I am using SQL Query Analyzer to try to access the database from my local computer using the same connection parameters that work on my SQL 2005 computer in Management Studio.
 
Thanks for any help!
 
 
 

View Replies !
Export SQL Server 2005 Express To SQL Server 2000
I'm trying to export a SQL Server 2005 Express database to SQL Server 2000 sp4, but have so far been unsuccessful. SQL 2005 Express doesn't have an Export Data function and backup/restore doesn't work because of the different versions.

Any suggestions greatly appreciated!

View Replies !
SQL Server 2000 DB In SQL Server 2005 Express
I have an SQL Server 2000 DB that I created on one PC that I would like to move to a PC running SQL Server 2005 Express, is this possible? Will the SQL Server 2000 DB run under SQLS Server 2005 EXPRESS? Thank you for any thoughts,

View Replies !
Sql Server 2000 , Sql Server 2005 Express
Hi, currently I m using vs studio 2005 to develop a in house web application... The problem is tat my company has only sql server 2000 license... n when creating the application cos vs studio comes together w sql server 2005 express, so i used it to develop the application. However, i tink there are compatibiliy issues with both databases. I used sql 2005 express mainly because in vs studio 2005 there are the LOGIN tools in which i cant create and they come mapped to databases created using sql 2005 express... so is there any compatibility issues when i deploy this application? and if so, is there any solution? cos i copied the db files from my application n tried to attach it in sql server 2000 and tried to open it but there was an error
error 602: could not find row in sysindexes for database ID 7, object ID1, index ID1. Run DBCC CHECKTABLE on sysindexes.
many thanks for ur help!

View Replies !
SQL Server 2000 With SQL Server Express 2005
I'm an engineer in a manufacturing environment. We have a centralized MS SQL Server 2000 running at each location of my company. I'm developing applications that will run on "Test stand" PCs, where product is tested. Current software works solely with csv files for data output and works independently of the network. To limit the reliance on the network, I'd like to setup small workgroups, or cells, of test stand PCs that communicate with a MS SQL Server Express 2005 that is replicated with the facility-side server databases running SQL Server 2000.

Will there be any compatibility issues replicating between these two? Obviously, the SQL Server 2000 will act as the publisher. Note that our IS department will likely not go for 2005 for awhile and I have no input to get them to move to this. It will be a little bit of a dogfight to get their support on the "cell" idea I'm considering. Our faciities in Juarez have frequent internal network issues, so to maintain production, it is very important to be able to continue testing product when the main network is down.

Thanks in advance for any insight.

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved