What is the Magic Tables in Sqlserver2000?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Answer / sandeep
Tables used in triggers like inserted,deleted,updated are
called magic tables.
| Is This Answer Correct ? | 1 Yes | 0 No |
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 |
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 |
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 |
Call a stored procedure from ado.net and pass parameter to it ?
7 Answers Keane India Ltd, TCS,
Data reader read and forward only, how is it possible to get 2 tables of data at a time?
What is openquery?
Why is stored procedure used in ado.net?
What is difference in record set and dataset?
Execute nonquery returns no. of afected rows.So if my stored procedure hav lot of select stmnt, delete stmnt, insert stmnt..then what does execute nonquery returns in this case?
What is the advantage of ado.net?
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?
Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
What is disconnected data?
What is Data view?
What are the objects of ado.net?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)