In: Computer Science
Which of these is/are true about stored procedures?
A user defined stored procedure can be created in a user-defined database or a resource database
Repeatable & abstractable logic can be included in user-defined stored procedures
To call output variables in a stored procedure with output parameters, you need to declare a variables outside the procedure while invocation
Temporary stored procedures are nothing but system stored procedures provided by SQL Server
1.A user defined stored procedure can be created in a user-defined database or a resource database this statement is false because A user defind stored can not be created in Resource database.
2.Repeatable & abstractable logic can be included in user-defined stored procedures this statement is true
3.To call output variables in a stored procedure with output parameters, you need to declare a variables outside the procedure while invocation this statement is true because To call a stored procedure with output parameters, you follow these steps:
4.Temporary stored procedures are nothing but system stored procedures provided by SQL Server this statement is true because temporary stored procedure are provided by SQL Server itself.
hence except first statement remaininng three statements are true.