Is it possible to recover a dropped table?
Asked By Ravi Kumar
03-Jun-04 01:11 PM
Hi All,
Accidentally I have dropped a table and that is the main table for my application.
I dont have a backup of it. Is there any way to recover it.Please help me guys.
Thanks,
Kumar.
Are you sure you don't have a backup
Asked By Robbe Morris
03-Jun-04 01:16 PM
When a database is created in SQL Server, it is set to Full Back Up by default. So, your table should be available by restoring the transaction backup. Try going to the "restore database" options by right clicking on the database name in Enterprise Manager and selecting All Tasks.
You know, I dropped a table
Asked By Dexter Dotnetsky
03-Jun-04 04:02 PM
on my foot once, and I don't think I ever recovered. Lots of luck.
Are you sure Transaction log can restore a table?
Asked By Peter Bromberg
09-Jun-04 05:14 PM
I thought it only held the transactions, not the whole database schema. That's what backups are for.
In other words, in the Full Recovery model, SQL server writes every update, delete etc. but it doesn't actually save a copy of some table or table schema script from which you could restore a dropped table.
I suppose its possible to manually recreate a table that was dropped by examining the log transactions, but its sure not something I'd want to have to do.
re: Is it possible to recover a dropped table?
vasuki replied to Ravi Kumar
21-Jan-11 04:01 AM
FLASHBACK TABLE table_name TO BEFOR DROP;
Sql Server Database Backup Hello Everyone. . . . I'm Deploying my site on Godaddy.com. Anybody can tell me how to take backup of sql server database from my local machine. because i created database on godaddy, .com but i cant find option which allows are some good links for you to know about the backup steps of database http: / / www.linglom.com / 2008 / 01 / 12
BackUp sql server database using vb.net to a user defined Path Dear All , I need to backup the sql server 2005 express database . It works fine if I make backup to specific folder"C: \ Program Files \ Microsoft SQL Server \ MSSQL.1 \ MSSQL \ Backup" . But if I change the
migration from sql server 2000 to sql server 2008 hi, i want to migrate sql server database 2000 to sql server 2008. Can you help me what to do? I know links- http: / / www.sqlmag.com / article / data-types / migrating-to-sql-server-2008 - and here you will get document file. http
SQL Server Database Backup Restore through query Hello Friends, I need to restore my back file of SQL Server database with different name. means i have one database with name "SVC.mdf" i have taken back of that whole database with name "SVCBK.bak" and stored at some place in i want to restore my back file "SVCBK.bak" to SQL Server Using Query. Restoring database backup through query: - -- -Make Database
Migration from MYSQL to SQL Server 2008 Hi, I am mirating SP from MYSQL to SQL SERVER 2008. Following is the input parameter in the SP in SIGNED ) But when I am tring to migrate this in SQL Server, it is being throwing some error. Please tell the corresponding Convert function in SQL Server. Migrate from MySQL to SQL Server 2008 You can migrate from the MySQL database to SQL
Restoring database data from sql server 2008 to sql server 2005 when restore the data i got an error like "RESTORE HEADERONLY is terminating abnormally. Microsoft SQL Server, Error:3241".how i prevent this error reply me urgent Transferring databases from SQL Server 2008 to SQL Server 2005 is not possible with standard backup and restore
backup and retore of sql-server database in vb.net. How to take backup of sql-server database in vb.net. And how to retore it using vb http: / / www.codeproject.com / KB / dotnet / SQL_Server_backup.aspx create a backup file using the following code Dim a As SQLDMO.Backup Dim svr As SQLDMO._SQLServer Try a = New SQLDMO.BackupClass
Take Database Backup - SQL Server 2005 (.bak file) Hi All, I want to take .bak file (backup) through SQL Script and for that I have created one Store Procedure and In this i have used this Script BACKUP DATABASE @AllDatabaseName TO DISK = @fileName In my sql server there is 10 Database but taking only 8 backups only