What is the Magic Tables in Sqlserver2000?
Answer Posted / 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 View All Answers
What is datatable in ado.net?
Explain sqlconnection object?
What are the steps to connect to a database?
Which ado.net object is very fast in getting data from the database?
What is the difference in an abstract class and an interface?
What is the difference between Datareader and Dataset?
Explain the difference between ado and ado.net?
can we create synonymn in ms access,sql server,my sql if so explain me with example
Which components of a data provider is used to retrieve, insert, delete, or modify data in a data source?
describe the dataset object in ado.net.
How can we add/remove row's in "datatable" object of "dataset"?
What are the several execute methods of ado.net?
What is ado.net components?
What is an ado connection?
Why do we need ado.net?