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 the full form of ado?
Which is better entity framework or ado.net?
What is ado.net tutorial?
Which is better ole db or odbc?
What is acid in ado.net?
What are the essential features of ado.net?
What are the uses of Stored Procedure?
What is the advantage of ado.net?
What is basic use of data view?
What is difference between datagridview and datagrid control in winforms?
What are the different methods available under the sqlcommand class to access the data?
What is ado net stands for?
How to connect and retrieve data from database using dataset
how you will deal result set? How do you sort a dataset?If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?
What two types of data providers does ADO.NET supply? What determines which one you should use?