Hi..here i would like to know the Backup and Restore models?
Answers were Sorted based on User's Feedback
Answer / naren
Back up we have full and defferential
(incremental),transaction log backups
Recovery models full,bulk, simple
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / laxman
that may recovery models:
simple
bulk-loged
full
Is This Answer Correct ? | 0 Yes | 0 No |
How do I clean up sql server transaction log?
what is a transaction? : Sql server database administration
What is 4nf in normalization form?
Does a server store data?
Why normalization is used?
What is the beast way to write CTE in SQL Server ?
Describe about first three Normal forms.
What is use of @@ spid in sql server?
How can you swap values between two rows in a table using single- SQL statement?
1 Answers Tavant Technologies, Virtusa,
Can truncate be rolled back?
What is table valued function and scalar valued functions?
In the below query i have performed the commit transaction statement but still the values after the save are not saved. Can you please let me know why are the statements after save are rolled back even after commiting the data. help me with the understanding declare @trans2 varchar(10)='transaction2' begin transaction @trans2 insert into emp values(100,'xy',600); save transaction @trans2 insert into emp values(200,'pq',700); insert into emp values(300,'pq',800); commit transaction @trans2 rollback tran @trans2