What are Magic Table?

Answers were Sorted based on User's Feedback



What are Magic Table?..

Answer / arvind kumar

Magic tables are Inserted And Deleted which fires when we
use triggers and they are also work like temporary tables to
hold the data.

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / kanna

Magic Table

When we use Trigger Statement in SQL that time atomatic created in Magic Tables INSERTED and DELETED tables and UPDATE also

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / sushanta kumar sahoo

magic tables are nothing but inserted and deleted in which
the temporary object created by the server internally to
hold the recently inserted values.

Is This Answer Correct ?    1 Yes 1 No

What are Magic Table?..

Answer / rohit kumar singh

update & delete are two magic tables.
(a)update
insert and update
(b)delete

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / golu singh

In SQL server magic table is nothing more than an internal
table which is created by the SQL server to recover recently
inserted, deleted and updated data into SQL server database.
That is when we insert or delete any record from any table
in SQL server then recently inserted or deleted data from
table also inserted into inserted magic table or deleted
magic table with help of which we can recover data which is
recently used to modify data into table either use in
delete, insert or update to table. Basically there are two
types of magic table in SQL server namely: inserted and
deleted, update can be performed with help of these twos.
Generally we cannot see these two table, we can only see it
with the help Trigger’s in SQL server.

For more details please check out the following link...
http://mindstick.com/Blog/211/Magic%20Table%20in%20SQL%20Server

It might resolve your problem.
Thanks!!

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / shweta sharma

inserted and updated are the rite answer

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / krishna pada mandal

Whenever we fire the DML trigger in any table then the two
table is created one in inserted and second is deleted that
is called Magic table. Actually this is temporary table
inserted table contain the copy of all record that are
inserted in the trigger table. And deleted table contain all
records that have been deleted fro, the trigger table.
When we update the table the trigger use both the table.

Is This Answer Correct ?    0 Yes 0 No

What are Magic Table?..

Answer / neeraj sharma

When we fire the trigger then the data goes to temporary
tables. when we execute insert, delete, update trigger the
the data goes to temporary tables. these temporary tables
are called as magic tables. There to types of magic tables:
1. Inserted
2. Updated

Is This Answer Correct ?    0 Yes 1 No

What are Magic Table?..

Answer / sandeep

magic table two part
1)Inserted
a)Insert
b)update
2)Deleted

Is This Answer Correct ?    24 Yes 26 No

What are Magic Table?..

Answer / pappu

magic tables are created by great magician Mr.Muthukad....
for further details u have to contact him...

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SQL Server Interview Questions

What is a materialized view?

3 Answers  


How to view the error log for any specific instance? : sql server database administration

0 Answers  


WRITE A FUNCTION TO DISPLAY THE OUTPUT OF AN EXISTING TABLE RANGE LIKE COMMAM SEPERATED VALUES LIKE RANGE1,RANGE2,...

2 Answers   TVS,


How to disable stored procedure sql server?

0 Answers  


What is the purpose of the model database?

0 Answers  






What is “begin trans”, “commit tran”, “rollback tran” and “savetran”?

0 Answers  


Where sql server usernames and passwords are stored in a sql server?

0 Answers  


Differentiate between a having clause and a where clause.

0 Answers  


What is the user of Primary key?

0 Answers  


What are the different types of triggers in SQL SERVER?

0 Answers  


How to write stored procedure to update the data in 10 tables

4 Answers  


How to bind a view to the schema of the underlying tables?

0 Answers  


Categories