Can I know,how to Execute Funcion and Trigger through
command(Manualy Execution) in MS SQL/SERVER 2005,give me
answer with Example.
Function can excute by the SELECT statement
ex SELECT Functionname(parameters), select *from
functionname
select s_func(Parameters)
We cant execute the trigger ,
When we perform a DML(DELETE,INSERT,UPDATE) operation
Trigger will fire automatically
Is This Answer Correct ? | 4 Yes | 0 No |
How to insert and update data into a table with "insert" and "update" statements?
How to enter comments in transact-sql statements?
How do you identify a foreign key?
Explain different isolation levels?
How can count the string ? for ex: If i have string like 'bhaskar' then i need like b:1 h:1 a:2 s:1 k:1 r:1 please give any idea on that
What is primary key index?
System requirements for sql server 2005 express edition?
what is a self join? : Sql server database administration
what is node in sql server?
2 Answers CarrizalSoft Technologies, Google, NIIT, Nittany, TATA,
2) Consider a Table name A which has below records ID --- 5 5 5 5 5 Consider another table B which has below records ID -- 5 5 5 5 5 5 5 5 How many rows will be returned by each of the below queries a) select * from A inner join B on A.id = b.ID b) select * from A left join B on A.id = b.ID c) select * from A right join B on A.id = b.ID
How to Display, Amount of Disk Activity Generated by Transact-SQL Statements?
How will oyu test the stored procedure taking two parameters namely first name and last name returning full name?