Top "Stored-procedures" questions

A subroutine available to applications accessing a relational database system.

dbms_scheduler.run_job('jobName) fails to run

I'm trying to run a scheduled job manually, the job looksa like this DBMS_SCHEDULER.CREATE_JOB ( job_name => …

oracle stored-procedures plsql dbms-scheduler
Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'

I am using WinHost.com to host my site. The SQL Database/membership system works perfectly on my local computer, …

sql sql-server stored-procedures
List all stored procedures with schema name

Can anyone advise on a way to list all stored procedures along with their schema names in a database? Thanks!

sql-server-2008 stored-procedures database-schema
Does Entity Framework Code First support stored procedures?

I've watched several presentations of EF Code First and haven't seen how EFCF works with stored procedures. How can I …

c# entity-framework stored-procedures code-first
MySQL Stored Procedure Permissions

I am trying to give a user permission to run a stored procedure at the stored procedure level on a …

mysql stored-procedures permissions grant
Return setof record (virtual table) from function

I need a Postgres function to return a virtual table (like in Oracle) with custom content. The table would have 3 …

sql postgresql stored-procedures plpgsql
SQL function as default parameter value?

I tried changing a default parameter value with this: ALTER PROCEDURE [dbo].[my_sp] @currentDate datetime = GETDATE() and all the …

sql sql-server stored-procedures
Functions vs procedures in Oracle

can anybody explain what is the main difference between functions and procedures in Oracle? Why must I use procedures if …

oracle stored-procedures plsql oracle11g stored-functions
MYSQL Stored Procedures: Variable Declaration and Conditional Statements

I have looked over numerous tutorials, manuals and documentations, but I still can not get this to work. I am …

mysql sql stored-procedures variable-declaration
How do I view my stored procedures in phpMyAdmin?

I created a stored procedure in phpMyAdmin CREATE PROCEDURE Sample() SELECT * FROM feedback Where could I view this this procedure? …

mysql sql stored-procedures phpmyadmin