can we call stored Procedure in Function in Sql Server 2000
and vice versa.

Answers were Sorted based on User's Feedback



can we call stored Procedure in Function in Sql Server 2000 and vice versa...

Answer / rvs varma

Its not possible to call sp's in function but viceversa is
possible

Is This Answer Correct ?    63 Yes 6 No

can we call stored Procedure in Function in Sql Server 2000 and vice versa...

Answer / swathi

no we cannot call sp in a function

Is This Answer Correct ?    28 Yes 3 No

can we call stored Procedure in Function in Sql Server 2000 and vice versa...

Answer / mohammad ali

We cannot call Procedure from the Function

We can call the Procedure From the Procedure as
EXEC ProcedureName
@Parameter1 = "Para1"
@Parameter2 = "Para2"
@Parameter3 = @Val OUTPUT (Use when there is Output in the Procedure)

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More SQL Server Interview Questions

I have a table in which phno is one of the columns.i do have some values in tht phno column.i need to update phno column values with 0(zero) as prefix.give me a correct solution plz...

7 Answers   Value Labs,


How real and float literal values are rounded?

0 Answers  


what is procedure in sql?

2 Answers   Millennium, SQL,


How to search for a string in all stored procedure in sql server?

0 Answers  


Explain stored procedure?

0 Answers  






how we use window authentication connection with sql server.?

0 Answers   MCN Solutions,


What is openrowset sql server?

0 Answers  


How to delete an existing row with delete statements in ms sql server?

0 Answers  


What is an index in a database?

0 Answers  


How to modify existing triggers using "alter trigger"?

0 Answers  


If we drop a table, does it also drop related objects like constraints, indexes, columns, defaults, views, and stored procedures?

1 Answers  


How to transfer an existing table from one schema to another schema in ms sql server?

0 Answers  


Categories