adspace
Every night you run a full backup after every 3 three hours you make a differential backup every hour you make an incremental backup in a worst-case scenario, how much work you can lose?
Answer Posted / Ashish Bhatia
In a worst-case scenario, if a failure occurs between the last full backup (which happens every night) and the next one (after 24 hours), you could potentially lose all data created or modified within those 24 hours. This is because differential backups only capture changes made since the last full backup, and incremental backups capture changes since the latest backup (either full or differential).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between for xml raw and for xml auto?
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
What are the risks of storing a hibernate-managed object in a cache? How do you overcome the problems?
What are the different SQL Server Versions you have worked on?
When should you use an instead of trigger?
Can sql servers link to other servers like oracle?
Where can you add custom error messages to sql server?
Is it possible to have clustered index on separate drive from original table location?
What are wait types?
Can one drop a column from a table?
Equi join and non equi join is possible with sql server?
How can we solve concurrency problems?
What is acid mean in sql server?
Explain system functions or built-in functions? What are different types of system functions?
List the ways in which dynamic sql can be executed?