1.what is stored procedure?Its significance with example?
2.Explain about index with syntax and example?
plz do reply.........
Answer Posted / trived.r
store proceder is T-SQL commend , in store proceders
baunch of commends and bunch of statement excuted at a time
know as store proceder.
ex :
select (avg)sal,ename from emp
we dont write evry time this commend
simply write of this commend insted of
write this commend (STORE PROCEDER)
CREATE PROC USD_AVGSAL FROM EMP
U EXECUTE N NUMER OF TIMES WITH THIS AND
EXEC USD_AVGSAL...........
Index is read from spcific recored or data know as index.
and index use of retrive data fast.faster excution.
syntax:
create non clusterd index cid_eid_emp
on emp(eid)
on primary.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are trace files?
What is the maximum size of a row in sql server?
What is sql or structured query language?
OPTIMIZATION OF SP,CURSOR,TRIGGERS
How can sql injection be stopped? : sql server security
Is mysql better than sql server?
Is sql server difficult to learn?
how you can move data or databases between servers and databases in sql server? : Sql server administration
List layers of abstraction microsoft architectured to provide relational db through cloud platform ?
How do I change my passwords (database, LDAP, and so on) without causing an outage?
What is extent? Types of extents?
Which trace flags are enabled in sql server?
what type of index will get created after executing the above statement? : Sql server database administration
What number sorts of privileges are accessible in sql?
What is primary key index?