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 sqldatareader?
How can we add/remove row's in "datatable" object of "dataset"?
Explain the difference between data reader and data set?
What is ado.net objects?
What are all features of ADO.Net?
What is difference between connected and disconnected architecture in ado.net?
What is ado or jdbc?
What is oledb connection?
How to add an aggregate column?
What is the difference between dataset and datatable?
How can you identify whether or not any changes are made to the DataSet object since it was last loaded?
How to find the given query is optimised one or not?
What are the different methods available under the sqlcommand class to access the data?
What two types of data providers does ADO.NET supply? What determines which one you should use?
Can we create Synonymns in MS Acess,My Sql Server,Sql Server? But iam we can create in oracle!