164k views
3 votes
System stored procedures a. perform standard tasks on the current database b. are stored in the Master database c. can change with each version of SQL Server d. all of the above

User Slazer
by
8.4k points

1 Answer

7 votes

Answer:

D. all of the above

Step-by-step explanation:

A Stored Procedure (sp) is an already compiled group of SQL requests that contains either one or more statements which are stored in the master database.

A Stored Procedure can be created by using the CREATE PROC statement.

They perform standard tasks, stored in the master database and can change with each new version of SQL, so option D is correct.

User Bradley Campbell
by
7.6k points