Can you give an example of Stored Procedure?

Answers were Sorted based on User's Feedback



Can you give an example of Stored Procedure?..

Answer / guest

sp_helpdb , sp_who2, sp_renamedb are a set of system defined
stored procedures. We can also have user defined stored
procedures which can be called in similar way.

Is This Answer Correct ?    4 Yes 0 No

Can you give an example of Stored Procedure?..

Answer / ghous

user defines sp...
say i want to select some values based on parameter

create sp dbo.spname
'declare var

@parametername int
as
select * from table_name
where file_name=@parametername

Is This Answer Correct ?    4 Yes 1 No

Can you give an example of Stored Procedure?..

Answer / madhesan

create database mani

use mani

create table emp
(
empno int,
empname varchar(20),
salary int
)

select * from emp

insert into emp values(2,'hari',10000)

create procedure selectproc
as select * from emp

exec selectproc

create procedure insertproc
@no int,
@name varchar(20),
@salary int
as
insert into emp values(@no,@name,@salary)

exec insertproc1 2,'pavan',15000

create procedure insertproc1
@no int,
@name varchar(20),
@salary int
as
if @no=1
print 1
else
insert into emp values(@no,@name,@salary)
print "successfully inserted!!!"

select * from syscolumns

sp_helpdb mani

sp_help selectproc
sp_helptext selectproc

set isolation level serializable

Is This Answer Correct ?    1 Yes 0 No

Can you give an example of Stored Procedure?..

Answer / jyothi

user defines sp...
say i want to select some values based on parameter


create PROCEDURE GetEmployeeDetails
-- Add the parameters for the stored procedure here
@sno int,



-- Insert statements for procedure here


select *from emp where sno=@sno


END
GO

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SQL Server Interview Questions

What is the osql utility?

0 Answers  


How can I know what locks are running on which resource?

0 Answers  


what is spatial nonclustered index

0 Answers  


If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio

0 Answers  


You are doing log shipping due to some reasons it is failing. How you will proceed from there

0 Answers  






Does any body please help me what question's have asked for SSRS in the interview?

0 Answers  


How to check parameter value in stored procedure sql server?

0 Answers  


what is the difference between Delete and Truncate

4 Answers   CarrizalSoft Technologies, Geo Research Centre,


What happens when converting big values to integers?

0 Answers  


what is a join? : Sql server database administration

0 Answers  


What is the basic functions for master, msdb, tempdb databases?

2 Answers   CSC,


What do you mean by table and field in sql?

0 Answers  


Categories