Restoring Filegroups In 2005.

May 3, 2007

Howdy all. I want to be able to restore just 1 filegroup from a filegroup backup, without having to restore the log afterwords even if the data has changed post filegroup backup. While this would leave the data inconsistant, it may be desired at times. From BOL: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/udb9/html/2f552700-efb3-48f1-b96d-c073049100f0.htm

************************************************** ******
If the files have been modified after the file backup was created, execute the RESTORE LOG statement to apply the transaction log backup, specifying:

The name of the database to which the transaction log will be applied.
The backup device from where the transaction log backup will be restored.
The NORECOVERY clause if you have another transaction log backup to apply after the current one; otherwise, specify the RECOVERY clause.
The transaction log backups, if applied, must cover the time when the files and filegroups were backed up until the end of log (unless ALL database files are restored).
************************************************** ******

But thats just it, I may not want to take this action. Maybe some data got deleted from a set of tables in a filegroup right after I took my last filegroup backup, so I just want to restore that filegroup back to that backup, but leave my other filegroups alone. Restoring the log brings the data back to a consistant state when the log was backed up, which may not be what I want.

Can this be accomplished?

TIA, cfr

View 2 Replies


ADVERTISEMENT

Change Table Filegroups On 2005

Aug 13, 2007

I have approximately 400 - 600 tables that need to have their filegroups changed on a new SQL 2005 installation. In 2000, I could go the table properties in Enterprise Manager and change the filegroup, but on 2005 Management Studio, I can view (but not change) the table properties.

I realize that I can create the table on the other filegroup using a new name, move my constraints and indexes to this new table, copy the data over, drop the original table, then rename the new table to the name my application is expecting. But that could take me weeks (especially with such a time-consuming process)! I don't mind the process being so slow, but I do mind it being labor intensive.

Does anyone have an idea how I can automate this process (or at least make it as easy as it was with Enterprise Manager?)


Paul Teal

View 3 Replies View Related

How To Configure Filegroups On Multiple Machines - SQL 2005

May 15, 2008



Hi folks,

I am exploring various solutions to setting up a scalable database configuration. To do a proof of concept, I need to setup the database in such a way that the data is partitioned on 2 physical machines.

I looked at distributed partitioned views, which allowed me to create a table on databases residing on two different servers, and then I created distributed view (with appropriate range constraints) that supported distributed selects, joins, updates, and inserts. This seemed to be the solution we were looking for.

However, I ran into a major problem because of the fact that distributed partitioned views don't allow a table to maintain an Identity column with an identity seed.

I did more research and found the Partitioned Table concept that was introduced in SQL 2005. This partitioned table allows us to have a single table which is horizontally partitioned across multiple file groups. This table now is just like a regular table in that it supports the identity column and identity seeds and guarantees index integrity. We were successful in implementing the partitioned table on a single machine, with three filegroups.

Now I need to move these file groups to different physical machines. I have found some articles on adding file group on additional hard disks on the same machine - but nothing to setup a database that is comprised of multiple servers that each handle a part of the data partition.

Is it possible to create a database comprise of filegroups residing on different physical machines?

Thanks.

View 12 Replies View Related

Restoring In SQL 2005

Feb 8, 2006

Hi ,

I am trying to restore database , which is backed up from SQL 2005 ver 9.00.1399.06

to anothere machine have SQL 2005 ver 9.00.1399.00.



When I try to do a restore I am getting the following error!

Too many backup devices specified for backup or restore ; only 64 are allowed.

RESTORE HEADER ONLY is terminating abnormally . (Microsoft SQL Server, Error:3205)

Please give me some solution for this.

View 12 Replies View Related

Restoring A 2000 Db To 2005

Jun 20, 2007

Hello,

I'm having an issue with stored procedures after restoring a db from 2000 -> 2005.

If any stored procedures isnt owned by dbo (eg tomsqluser.updateItems rather than dbo.updateItems) then it just wont work and Studio Management Server doesnt give the permission to change it to dbo.

Is there any way around this after restoring?

View 10 Replies View Related

Restoring DB From Sql 2005 To Sql 2000

Nov 11, 2007

hi there,
I've got a problem while restoring a DB from sql server 2005 to sql server 2000 I always got an error message 3169.
Please I want if it's possible to make it, it urgent.


Thanks in advance

View 1 Replies View Related

Restoring A Db In SQL Server 2005

Dec 21, 2006

Hello,

I received a backup Sql Server file and I am trying to restore it. When trying to restore the backup using SQL Server 2000, I get the following message:

"the backed-up database has on-disk structure version 611. The server supports version 539 and cannot restore or upgrade this database. RESTORE DATABASE is terminating abnormally."

After doing some research online, I figured out that the backup I received must be from SQL Server 2005. Therefore, I installed SQL SErver 2005 on my laptop (so now I have both 2000 and 2005 on my laptop)..

I tried to use the restore database option in SQL Server 2005 ( SQL Server Management Studio) to restore my backup, and I get the same error message (written again below) as I did when using SQL Server 2005:

"The backed-up database has on-disk structure version 611. The server supports version 539 and cannot restore or upgrade this database. RESTORE DATABASE is terminating abnormally"

Can anyone please provide me assistance on what I'm doing wrong? Is the issue that I have both SQL Server 2000 and SQL Server 2005 installed on my laptop? Thanks.

View 7 Replies View Related

Restoring A Sql Express Backup To Sql 2005

Jun 2, 2008

i'm trying to set up one of the asp.net website starter kits and part of the process is to backup the sql express db and then import it into the sql 2005 at the web hosting account.  it's not working and i'm wondering if there's any difference between the backups they make.  the sql express makes a file with a .bak extension and the sql 2005 at the host makes a file with a .sqlbak extension.  i was assuming that was just a naming thing and not a structural thing but the host's tech support has said:
"This sort of thing happens when the database being imported is not properly formatted. You can try downloading and using sql express from microsoft to see if you can do it manually, but most likely you will need to save your database again properly set for import to an mssql server rather than however you did."
all i had done was rename the .bak file from express to .sqlbak as that was the choice for backup files.
i will note that it also failed importing the .mdf, which works fine locally with the site but i did make some changes to it from the original that came with the starter kit.
should a backup file made with sql express (using sql management studio express, by right clicking on the file and choosing tasks > backup) normally be importable by sql 2005?
or, i suppose, does it make sense that a db that works fine locally with sql express (within a visual web developer express project anyway) would actually be "formatted" in a way that would cause it to fail to import into sql 2005?
thanks much for any assistance.

View 3 Replies View Related

Problem With Restoring An SQL 2K Backup On To SQL 2005

Oct 24, 2006

I am currently having a problem with restoring a backup made on SQL 2000 XP machine onto a Windows server 2003 machine with SQL Express 2005. I am getting the following error

"System.Data.SqlClient.SqlError: The operating system returned the error '5(Access is denied.)' while attempting 'RestoreContainer::ValidateTargetForCreation' on 'C:Program FilesAvidian TechnologiesProphetavidian.mdf'. (Microsoft.SqlServer.Express.Smo)"

I'm not sure what is going on becuase I have no issues installing the backup on my XP Pro machine that has SQL Express 2005 Dev edition. So what I did was restore the backup on to SQL Express 2005 on my dev machine and backup again. Unfortunately when I took the newly created backup and tried again to restore the database on to my window server 2003 machine it failed again. Exact same message was displayed.

Any suggestions or help would be greatful.

Thanks,
Rodney

View 1 Replies View Related

Restoring Differentials From 2000 To 2005

Oct 16, 2007

Hi Guys,
I have two servers at my site out of which one is our production server (on SQL 2000) and the other being a reporting server (SQL 2005). Now the question i have are the following..

Q1) Can i restore an hourly differential backup of my SQL 2000 to SQL 2005?
Q2) If yes, are there any specific way i need to go about it other than the conventional Restore with NoRecovery option?
Q3) If the answer is no to Q1, then is there any 3rd party software that does this(restoring differentials from 2000 to 2005)?


I had tried this once some time back and at that time it failed to keep the database in a state(norecovery) where in it would accept timely differential db restoration.

Appreciate your help

sk

View 5 Replies View Related

Restoring Linux ANSI_SQL To SQL 2005

Jun 12, 2007

Our firm needs to analyze some financial data for a client. They gave us a SQL database file in ANSI format. Is there a way to import this data into SQL 2005?



Thanks,



Steve

View 4 Replies View Related

Problems Restoring 2000 Db To 2005

Aug 22, 2005

Hello,

View 7 Replies View Related

Restoring BAK File Sql Server 2005 Express

Apr 3, 2007

Hello Everyone,
I am trying to restore a bak file which came with code for a tutorial.  I think it is safe to restore, but sql server 2005 express has the following problem when I try to restore it.
TITLE: Microsoft SQL Server Management Studio Express------------------------------
Restore failed for Server 'BOBSQLEXPRESS'.  (Microsoft.SqlServer.Express.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.3042.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Restore+Server&LinkId=20476
------------------------------ADDITIONAL INFORMATION:
System.Data.SqlClient.SqlError: The operating system returned the error '5(Access is denied.)' while attempting 'RestoreContainer::ValidateTargetForCreation' on 'C:Program Files (x86)Microsoft SQL ServerMSSQL.1MSSQLDashboard.mdf'. (Microsoft.SqlServer.Express.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.3042.00&LinkId=20476
The links given for help have no information about the problem and I'm not really sure where I should be looking to solve this.  I'm a newbie to databases so if you could provide a step-by-step answer that would be best.  Thanks in advance.
                                                                                                                              Robert

View 4 Replies View Related

Restoring Databases In Sql 2005 Express - Filename Changes?

Mar 22, 2008

Hello,
Does anyone else ever experience this problem, and if so do you know what causes it:
When ever I restore a database called say XXX.mdf, it restores OK and I can view via MSE as XXX.mdf. Then when I visit MSE again there is another database called C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDataXXX.mdf - both are linked to the same .mdf file, however if you try to expand XXX.mdf nothing happens as though the database has been detached?
Cheers MArco

View 3 Replies View Related

Restoring From 2000 Backup To 2005 Instance

Nov 13, 2006

I did a backup of a SQL2000 database (named Winstis) using the 2005 management studio. I then created a blank database on my 2005 instance (named Winstis). I then tried to do a database restore to the new 2005 database. I got an error:

System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing 'Winstis' database. (Microsoft.SqlServer.Smo)

I even tried the option to Overwrite Existing database and I got a different error:

System.Data.SqlClient.SqlError: The operating system returned the error '32(The process cannot access the file because it is being used by another process.)' while attempting 'RestoreContainer::ValidateTargetForCreation' on 'D:Program FilesMicrosoft SQL ServerMSSQLData est.ldf'. (Microsoft.SqlServer.Smo)

Also the 2005 instance database is on C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDataWinstis_Data.mdf

and the 2000 instance is on
D:Program FilesMicrosoft SQL ServerMSSQLDataWinstis_Data.mdf

How can I accomplish getting the database from 2000 to 2005 with all tables, store procedures, and functions?

View 2 Replies View Related

Restoring A 2005 DataBase Into A 2000 Server

Mar 12, 2007

I would like to know if it is possible to make a backup of a database in a SQL Server 2005 server and restoring it in a SQL Server 2000 server.

Thanks a lot in advanced.

View 5 Replies View Related

Restoring SQL Server2000 Backup To SQL Server 2005

Oct 3, 2007

Hi,

I have a sql server 2000 backup and I want to restore it into a Sql Server 2005 database.

I did the restore on the usual way. All the database tables were created, but the data didn't get restored.

Pls help!
Thanks!

View 7 Replies View Related

Reseting Users After Restoring SQL Server 2005

Jan 9, 2008

I am restoring a production copy of db XYZ to the development server db XYZ. I want to retain the original users on the development server for db XYZ. How do I create a script that will reset the users on the development server with the same permissions and access they had before the production copy was restored on development? I have searched and searched and cannot find the answer. I can use a third party tool - Embarcadero - to script out the create and update stmts but it is not 100% correct. I end up having to do alot of manual work.

any assistance would be greatly appreciated.
thanks

View 5 Replies View Related

Database Restoring Problem In Sqlserver 2005

May 2, 2008

Hello

I had created database of name ILM. after some days i renames my database in SSMSE.



by right clicking on ILM

selecting rename option

type the name CIS

Then i take backup of CIS

Problem is that

I have formated the derive where sqlserver was installed.

i only have backup file

plz tell me how i can restore database using this backup file.
i was struct plz help me soon
regards
jawad g

View 18 Replies View Related

Moving And Restoring Connections W/ SQL 2005 Databases

Dec 27, 2007



I have a question regarding moving databases within the same server but to a different drive. Using the 'Alter Database' query transaction procedures within the SQL Server Management Studio, I'm able to take a user database offline and move it. However, when using the Alter transaction to bring the database back online, I get errors. There was also an attempt that seemed to work, but the app that uses the database through ODBC can't see the database that was moved and errors out.
How can databases be moved and connections re-established within the same server?
Thanks...

View 1 Replies View Related

Restoring An SQL 2005 Server Express DB With A LOG That Is To Large

Jul 31, 2006

SQL 2005 Express - Database Restore size problem
Was this post helpful ?














Hi,

I'm trying to restore a SQL Server DB Backup from a SQL Server DB Server on to my Laptop (SQL 2005 Express)

When I execute a restore filelistonly command on the backup file, It seems that the Database included is 1GB, but the Log file is 91 GB in size, which exceeds my diskspace.

I can restore the Data on its own without the log file, but the the Database stays in "restoring" mode. I've tried to switch the restore flag off (update sys.databases set state = 0 where name = 'G001'), but I can`t seem to be able to do it, even if I try to allow updates via:

sp_configure 'allow updates', 1

GO

RECONFIGURE WITH OVERRIDE

GO



Any ideas how I can restore the database without restoring the enormous logfile?

Thanks in advance...



View 3 Replies View Related

Insert Issues After Restoring 2000 Db Into 2005

Jan 11, 2007

Hi all,

We are experiencing major performance issues after restoring SQL Server 2000 db into newly setup hardware environment. The application is faster on another environemnt running on Windows 2000 server with SQL Server 2000.

We have replicated exact same hardware setup, but only fifference is we are running latest version windows server (2003) and latest version of SQL Server (2005). So far we have troubleshooted the bottleneck to be one of the trigger that is inserting data into a table in one of the stored procedures. The same SP takes 9 mins to execute whereas on our env it takes around one hour. If I disable the trigger it executes in 2 minutes.

After restoring, we have executed

exec sp_updatestats

DBCC UPDATEUSAGE

DBCC DBREINDEX all tables

Set Compatibility level to SQL SERVER 2005 (90).

Now we are installing latest Service Pack for both OS and SQL Server.

Any ideas?

Your help is appreciated.





View 1 Replies View Related

Restoring A SQL 2000 Db To SQL 2005 With Different Collation Types

Apr 27, 2007

Hello,



Is it possible to restore a SQL 2000 backup with Binary Order collation to a new SQL 2005 installation with Dictionary order, case-insensitive. Is this something I can do during the restore process or would I need to change it after?



Thanks in advance,

Buster

View 3 Replies View Related

SQL 2005 Make Restoring User Db_owner

Feb 29, 2008



Hi all,


I'm kinda stuck with the following issue and would apreciate some help with it.

Basically i need to have a user within SQL that has rights to restore databases and is the owner of that database so it can alter the data. The problem i face is that at this moment i see no other way then making that user either member of the server role "sysadmin" or "serveradmin".

Anyway, these roles have to much rights. I tried using the dbcreator role which will make a the needed user db_owner but only when a new database is created, not when a database is restored.

Tried to resolve this with a DDL trigger and then temporarily run as a user with serveradmin rights, however there is no system event for restore database, so that doesn't work either.

Anybody got any suggestions?


View 3 Replies View Related

Restoring Database From MS SQL 2000 To SQL Express 2005

Sep 4, 2006

Hello,

I tried to restore a database which I backuped from MS SQL 2000 to SQL Express 2005 but it always failed with the following error message. What could be the problem?

Restore failed for Server 'SERVSQLEXPRESS'. (Microsoft.SqlServer.Express.Smo)

Additional information

System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing 'gtp' database.

(Microsoft.SqlServer.Express.Smo)

Thanks

View 23 Replies View Related

Problem When Restoring Old Version Database To Sql Server 2005

Jul 26, 2006

Dear All,

I am experiencing a problem that, after i have made a backup database file in SQL Server version (9.00.1090), when i restore the database in a newer SQL Server 2005 version(9.00.1399), an error occurs.

The error is:

Restore failed for Server 'demo'. (Microsoft.SqlServer.Smo)

Additional information:
System.Data.SqlClient.SqlError: The database was backed up on a server running version 9.00.1090. That version is incompatible with this server, which is running version 9.00.1399. Either restore the database on a server that supports the backup, or use a backup that is compatible with this server. (Microsoft.SqlServer.Smo)

Anyone can tell me how i could fix this?
Why would it happen?

Thank you very much

Regards,

George

View 1 Replies View Related

Restoring Backup From SQL 2000 To SQL 2005 But Login Name Is Missing

Mar 29, 2007

Hi all,I'm having a problem restoring backup from 2000 to 2005. The actualrestore process went ok. However, the database user of the restoreddatabase is missing a Login Name. I've made sure that the Login Nameis created in 2005. Also tried deleting the user, but couldn't theuser is db owner. Is there any way that I can assign a Login Name forthis database user or maybe drop this user and assign another one?Regards,Gerd

View 2 Replies View Related

Restore LDF File After Restoring Backups In SQL Server 2005?

Aug 22, 2007

I'm working on a restore procedure for the case where all MDF filesare missing, but the LDF files are all intact. A full backup is doneevery 24 hours, and a log backup is done every 3 hours. Afterrestoring the last full + log backups, is it at all possible to usethe LDF files to recover data from that point up to a newer point intime?I've found a post which explains how to do this on SQL Server 2000<http://groups.google.com/group/comp...s.ms-sqlserver/browse_thread/thread/3ef5c7cbc0a83334/f3b0c70811d35ed7>, but step 4fails with the following error message:BACKUP LOG cannot be performed because there is no current databasebackup.

View 2 Replies View Related

Error While Restoring SQL7 Data On SQL Express 2005

May 16, 2006

Hi,

I have backup of data from SQL Server 7.0 and now when i'm trying to restore it into SQL Express 2005, I'm getting following error......

--------------------
Msg 3154, Level 16, State 2, Line 1
The backup set holds a backup of a database other than the existing 'GOSLDW' database.
Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.
--------------------

Here is SQL i'm using to restore database,

RESTORE DATABASE GOSLDW
FROM DISK = 'C:sqlserverDataGOSLDW'
WITH MOVE 'GOSLDW' TO 'C:sqlserverDataGOSLDW.mdf',
MOVE 'GOSLDW' TO 'C:sqlserverDataGOSLDW.ldf'
GO


Why i'm getting this error? Am i missing anything here?

Thanks in advance for your HELP.

- R

View 8 Replies View Related

Restoring 2005 Backup With 8.0 Compatability Mode On 2000 - Help

Feb 26, 2007

Hi,

I have a database that is in the SQL Server 2000 compatability mode on my SQL 2005 server. I am trying to restore a backup of this database on my SQL Server 2000 database on another server and keep getting strange messages. First trying Red-Gate and then plain SQL Server with no luck.

It seems as I remember that the 7.0 and 2000 compatibility issue between backups did not arise when the compatibility mode was set to 7.0.

Is this "planned" behavior or an "undocumented feature"??? Anyone else have success doing this?

Thanks,

John Campbell

View 3 Replies View Related

Restoring MSDE SQL 2000 DB To SQL 2005 Enterprise Edition

Nov 8, 2007



Hi All,

I was trying to restore MSDE 2000 database to SQL 20005 EE and I got stuck with the following error:

System.Data.SqlClient.SqlError: RESTORE detected an error on page (xxxx:xxxxxx) in database 'testdb' as read from the backup set.

Do you think some pages are corrupt from the db or the backup set?

Has anybody come across this? Any ideas to resolve this error?

Thanks,
Siva.

View 4 Replies View Related

Restoring A SQL Server Express 2005 Database To SQL Server Standard 2005

Mar 24, 2007

Hello,If I backup and restore an express database to sql server 2005 standard, will there still be limitations in regards to the database size, cpu...etc.? Thanks,Jon 

View 1 Replies View Related

Restoring 2000 Backups On 2005 With Read-only Db And File Groups

Mar 30, 2007

We have a set of databases some are fully read-only others have read-only file groups, is there any way to restore backups of these taken on an MSDE 2000 to an SQL Express 2005 instance?

When doing the inplace upgrade we change these to read-write before the upgrade and set them back after the upgrade.

These databases are used in the field by customers althought the controlled upgrade requires a backup before (and blocks if it fails) and tries a backup after if the post upgrade backup fails (due to disk space) we might need to recover from this odd situation.

The only solution I have is install MSDE some place restore to this then do the controlled upgrade again, any other ideas?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved