How to provide default values to function parameters?
Explain the basic concepts of SQL server architecture?
2 Answers College School Exams Tests,
What is an index?
i have a table like this Eno ename 1 a 2 b 3 c i want to display ename and bossname from table hint boss is also an employee
What is row_number () and partition by in sql server?
How to create an identity column?
Difference between group by clause and having clause in SQL?
Explain the cursor lock types?
How to create logins using windows Authentication mode?
How optimize sql query with multiple joins in sql server?
How do I open port 1433?
how you can list all the tables in a database?
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