What is the Magic Tables in Sqlserver2000?

Answers were Sorted based on User's Feedback



What is the Magic Tables in Sqlserver2000?..

Answer / kalirajan

When u r creating the table at the same time two
tables(Insert table, Delete Table) r created automatically
at the backend. It is Magic Table k...Moreover we can't
able view that table...

Is This Answer Correct ?    9 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / kailash dhondiyal

When a trigger is fired for any DML command. Then 2 tables
automatically create on backend. One table is for Insert
and other one is for Delete. These tables are called Magic
Tables.
Number of records in both tables should be same.

Is This Answer Correct ?    6 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / ahmed kapasi

magic tables are used to get the values which are updated
from a DML statement in a trigger. for example if an update
statement is fired that time the new value goes to the
inserted table and old value goes to the deleted table, you
can fetch this values from this two tables if required.

Is This Answer Correct ?    4 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / sandeep

Tables used in triggers like inserted,deleted,updated are
called magic tables.

Is This Answer Correct ?    1 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / vishal rastogi

Magic Table is basically a sort of Virtual table in SQL
Server,whenever we insert or delete data from a table then
that data is stored in a table called as Magical Table.

Is This Answer Correct ?    0 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / kavita

When we are trying to create a new table,and when its get created with that, two tables get create automatically,and that are insert and delete table ,and we cant view that,bt whenever we do any transaction with that created table by us,automatically that both magical tables also get affected.

Is This Answer Correct ?    0 Yes 0 No

What is the Magic Tables in Sqlserver2000?..

Answer / ashish sharma

create table uname
(
id int,
uname varchar(10)
)

create trigger insert_Uname
on uname
for insert
as
declare @nm varchar(10)
select @nm = uname from inserted
print @nm

so when we insert any record in the above table
the username will be get printed.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ADO.NET Interview Questions

Describe the command object and its method.

0 Answers  


How would you connect to database using .NET?

0 Answers  


Why is it important to close an ado.net application?

0 Answers  


What do you know about ado.net's methods?

0 Answers  


Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?

0 Answers  


Explain what a diffgram is and its usage ?

2 Answers  


What is meant by entity framework?

1 Answers  


What are the benefits of using of ADO.NET in .NET 4.0?

0 Answers  


Difference between datareader and dataset?

26 Answers   Microsoft, Noel Infotech, Satyam, Value Labs,


Explain the namespaces in which .net has the data functionality class.

0 Answers  


What is row state?

0 Answers  


If we want to connect to many databases in dataaccess layer such as MSAccess,Sql server,oracle means not to a particular database depends on condition we have to connect to appropriate database in this scenario if we without changing code Ho wdo you handle this situation?

4 Answers   Honeywell,


Categories