About 3,280,000 results
Open links in new tab
  1. sql - What is a stored procedure? - Stack Overflow

    86 A stored procedure is a group of SQL statements that has been created and stored in the database. A stored procedure will accept input parameters so that a single procedure can be …

  2. Basics of defining procedures in Python? - Stack Overflow

    Hey Guys I am pretty new to Python and I am learning this programming language. I am using the Python IDE (GUI) for running all my codes. I have covered till the topic of defining custom …

  3. How to declare variable and use it in the same Oracle SQL script?

    DEFINE stupidvar = 'stupidvarcontent'; SELECT stupiddata FROM stupidtable WHERE stupidcolumn = &stupidvar; How can I declare a variable and reuse it in statements that follow …

  4. Writing procedures in TCL - Stack Overflow

    Mar 14, 2011 · To write a procedure that doesn't take any arguments, do this: proc someName {} { # The {} above means a list of zero formal arguments puts "Hello from inside someName" } To …

  5. Procedure in package specification - Stack Overflow

    12 I have a package named save_db_values I have two procedures named store_records and another one called db_activities. db_activities will be called from my application by passing all …

  6. What is the difference between a "function" and a "procedure"?

    Apr 6, 2009 · A procedure is a set of commands which can be executed in order. In most programming languages, even functions can have a set of commands. Hence the difference is …

  7. Default Values to Stored Procedure in Oracle - Stack Overflow

    The input parameters are not defaulting to the specified values in the procedure signature when input parameters are null. What is the use of default values then?

  8. What is the syntax to define an Oracle procedure within an …

    Nov 24, 2016 · How can I define a procedure inside of another procedure to use? I know that there are nested blocks and nested procedures, but I haven't seen the exact syntax for what I …

  9. Creating stored procedure with declare and set variables

    Feb 11, 2012 · I am creating one stored procedure where only value has to pass and I have to retrieve multiple values from multiple tables. I tried to do like this but its showing errors like …

  10. Stored procedure with default parameters - Stack Overflow

    Jul 1, 2016 · I am trying to create a stored procedure based on a query I wrote with parameters that are predefined. When restructuring to a create stored procedure and I execute the stored …