answersLogoWhite

0

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.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Can you uses sql stored procedure in qlikview and if you can script examples please?

In qlikview: SQL EXEC [dbo].[StoredProcedureName];


Difference between a local procedure and stored procedure?

local procedure wont store in database. Stored procedure store in database permanently and we can use it whenever we require. Other program also can use this stored procedure. And the transaction of stored procedure take care by DBA. But the local procedure transaction is take care by manually only


Can You Write Trigger in Stored Procedures?

A trigger is a stored procedure. It is a special stored procedure that runs in response to some defined event, such as an insert into a table.


What is the meaning of the term stored procedure?

A stored procedure is considered a subroutine, which is considered to be only available to the applications with access to a relational database system.


Is it possible to call a stored procedure from java script function and populate an aspnet dropdown list HTML control using the value returned by the SP?

No, a stored procedure can not be called from Javascript. A dropdown list however can be populated using a stored procedure.


What are the examples of procedure?

an example of a procedure that involves a inspection is


What are the examples of procedure in investigatory?

ambot


What are types of procedure languages?

Programming languages such as COBOL and FORTRAN are examples of procedure languages.


You created a stored procedure in sql server 2005 database and you called through aspnet page with connection then you are getting error as - Could not find stored procedure 'GetLoginInfo' solve pls?

The connections bruk.


What are stored procedures in data bases?

Stored procedure is the pl-sql block in precomplile from and can be used to excecute plsql statement


Which subprogram do you use to display the source code of a stored procedure when using dbms debug?

To display the source code of a stored procedure when using DBMS_DEBUG in Oracle, you can use the DBMS_DEBUG.GET_SOURCE subprogram. This procedure retrieves the source code for a specified procedure or package and allows you to view its contents. You typically need to specify the name of the procedure and the necessary parameters to access the desired code.


How do call stored procedure in jsp?

To call a stored procedure in JSP, you typically use JDBC (Java Database Connectivity). First, establish a connection to your database using DriverManager. Then, create a CallableStatement object with the stored procedure's SQL call (e.g., {call procedure_name(?, ?)}) and set any required parameters. Finally, execute the statement using execute() or executeUpdate() and process the results as needed.