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 are the main differences between classic ado and ado.net?
Explain About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data.
What is ado in agriculture?
What is data view and variable view?
How can you add or remove rows from the datatable object of dataset?
Explian About DataAdapters
Explain the difference in an abstract class and an interface?
Which one of the following objects is a high-level abstraction of the connection and command objects in ado.net?
What are the key features of ado.net?
What are the features of ado.net?
How would you connect to database using .NET?
What is read only and forward only in ado.net?
How to retrieve the user id which is provided while windows authentication?
What is connection pooling and what is the maximum pool size in ado.net connection string?
What are the pre-requisites for connection pooling?