Top "Procedures" questions

A procedure is a subroutine that does not return a value.

SQL Server - copy stored procedures from one db to another

I am new to SQL, and what I needed to do was to combine 2 .mdf databases into one. I did …

sql sql-server-2008 copy procedures
How to program a MySQL trigger to insert row into another table?

I'm looking to create a MySQL trigger on a table. Essentially, I'm creating an activity stream and need to log …

mysql triggers lastinsertid procedures
How do I get Oracle, see what procedures are running?

Good afternoon. How do I get Oracle, see what procedures are running?

oracle procedures
How to use a case-when statement in a mysql stored procedure?

I want to set the session_id automatically using the request_time parameter so i opted for a mysql stored …

mysql timestamp procedures case-when
How to run procedure from another unit?

Well this kind of n00b question but I still can't figure it out. I have unit main with procedure …

delphi scope procedures delphi-units
Whats the exact meaning of having a condition like where 0=0?

I'm having a bit confusion in using a statement like "where 0=0" in Oracle procedures? Can someone please clarify it? Even …

sql oracle procedures
How to execute stored procedure multiple times in C#

I have a time sheet app where users enter their time in/out for different days of the week. The …

c# procedures
MySQL How to get results after PREPARE and EXECUTE in Stored Procedure?

My current code is : DELIMITER \\ CREATE PROCEDURE sample (IN _car VARCHAR(15)) BEGIN DECLARE _a INTEGER; SET @s = CONCAT('SELECT COUNT(*) …

mysql variables variable-assignment execute procedures
The MySQL "DELIMITER" keyword isn't working

Ok so, I've been ripping my hairs ou on this one, why doesn't this work? DELIMITER | CREATE PROCEDURE Decrypt_pw() …

mysql stored-procedures delimiter procedures dbvisualizer
Assembly language: macros vs procedures

I'm new to assembly language and this question came across to my mind: Which is better solution for structuring my …

assembly macros procedures