Tagged Questions
The procedure tag has no wiki summary.
96
votes
26answers
31k views
Are there any suggestions for developing a C# coding standards / best practices document?
I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as I'm the first 'adopter' in the department) to create a basic (read useful?) C# coding ...
9
votes
9answers
7k views
What is the difference between a 'function' and a 'procedure'?
Generally speaking, we all hear about the "functions" or the "procedures" in programming languages. However, I just found out that I use these terms almost interchangeably (which is probably very ...
8
votes
1answer
194 views
How to fix procedure circular reference?
I'm new in the Delphi programming scene and i have trouble calling a procedure in a procedure in my console application.
My simple application is for a item inventory running through a telnet server ...
8
votes
8answers
4k views
How to get a table of dates between x and y in sql server 2005
I just want a quick way (and preferably not using a while loop)of createing a table of every date between date @x and date @y so I can left outer join to some stats tables, some of which will have no ...
7
votes
3answers
220 views
Removing the prologue of a function written in pure assembly
I am using Delphi 2010. Is it possible to tell Delphi to not generate a prologue for a function? I'm writing some pure assembly functions like this:
procedure SomeAssembly; stdcall;
begin
asm
...
6
votes
7answers
2k views
How To Get the Name of the Current Procedure/Function in Delphi (As a String)
Is it possible to obtain the name of the current procedure/function as a string, within a procedure/function? I suppose there would be some "macro" that is expanded at compile-time.
My scenario is ...
5
votes
3answers
353 views
How do I Invoke a procedure when inside another procedure in Pascal
procedure questiontype;
begin
writeln ('Enter the type of question you would like...');
writeln ('1. Add');
writeln ('2. Multiply');
writeln ('3. Subtraction');
writeln ('4. ...
5
votes
4answers
323 views
How to call a procedure or function when we are not aware of the parameters?
My application has to provide the ability of calling different functions and procedures from external DLLs. So we don't know parameters' count and their types. What should I do to do this?
Let me ...
5
votes
1answer
395 views
Procedure for licensing Android market
On the Android Compatibility page it is stated that:
Once you've built a compatible device,
you may wish to include Android Market
to provide your users access to the
third-party app ...
4
votes
2answers
231 views
Get the name of the calling procedure or function in Oracle PL/SQL
Does anyone know whether it's possible for a PL/SQL procedure (an error-logging one in this case) to get the name of the function/procedure which called it?
Obviously I could pass the name in as a ...
4
votes
2answers
236 views
Block procedure PL/SQL with Oracle
I have a procedure and i would like that only one user could execute this procedure at same time.
How i can do it?
A lot of thanks!
Regards
Marc
3
votes
2answers
150 views
MySQL dynamic search query procedure
The MySQL query should return
1) TRUE along with Comma(,) separated list of STATION_NAME from a table STATION WHERE STATION_NAME is LIKE the INPUT specified buy the user.
FOR Ex:
INPUT = A, ...
3
votes
1answer
218 views
Delphi Component Assign Event on the fly
I have an ADOStoredProc on my form. It's not visual but in code.Normally it's pretty easy to handle an event if a component is visual.It's just a matter of double clicking the desired event. But how ...
3
votes
2answers
3k views
Problem with execute procedure in PL/SQL Developer
I this is my first attempt to create procedure and execute it.
First I create simple table. DB scheme of table is here:
Table name: Ziaci
Columns:
ZiakId - primary key, number
Surname, varchar2
...
3
votes
3answers
780 views
“Types of actual and formal var parameters must be identical” error in Procedure
I am trying to write a procedure in delphi.
This procedure gets the name of TControl descendent element and then try to change some properties.
But when i try to do it, Delphi gives an error like:
...
3
votes
2answers
346 views
[Oracle/PHP]Is it possible to pass an array to a PL/SQL procedure?
If it is possible, how does the parameter need to look like in the procedure?
And how do you pass an array to a procedure?
3
votes
2answers
1k views
Limiting selected rows count with a stored procedure parameter in MySQL
I have a procedure SelectProc wich contains SELECT statement. I want to add a procedure param LimitRowsCount and use it as following:
CREATE PROCEDURE SelectProc (IN LimitRowsCount INTEGER UNSIGNED)
...
3
votes
2answers
634 views
PL/SQL: Retrieve names of procedures and functions within a package
Is it possible to retrieve the names of all procedures and functions that reside within a particular package? I understand that they can be gleaned (smells hack-ish) from the ALL_SOURCE view, but I ...
2
votes
1answer
35 views
measure time of an sql statement in a procedure in plsql
I must write a procedure which save the execute time of any sql-statement in a table.
The procedure is calling by exec measuresqltime('sql statement as string');
My idea is like this:
...
2
votes
1answer
54 views
how to update a nullable column in sql server stored procedure
I have a stored procedure that takes care of updates to my person table. I don't always update every column so I've provided default values (null) for some of the procedure parameters. But, what if ...
2
votes
3answers
73 views
How to execute oracle java stored procedure in parallel
I have a query like this:
select samplePackage.prepareMessage(t.message) as text
from
sampleSchema.sampleTable t;
sampleTable has large data (number of rows 30M)
prepareMessage is a java stored ...
2
votes
2answers
56 views
Oracle Add a new member function/procedure to an object type
I am trying to do the following; let's say I have created an object type in Oracle
create type test as object(
name varchar2(12),
member procedure print1);
/
create type body test is
member procedure ...
2
votes
1answer
105 views
Create incrementing number based on another column to form two-part key
I have a table (sql server database).
It has a two-part natural key on Location (an integer) and CaseNumber (also an integer)
When I create a new record I want to specify the Location and have the ...
2
votes
3answers
898 views
PL/SQL:“character string buffer too small” error for specific environment
Can't got the problem,that reproduced on my environment.
Result of running PL/SQL procedure on my PC on Eclipse SQL Explorer:
ORA-06502: PL/SQL: numeric or value error: character string buffer too ...
2
votes
2answers
134 views
Function and procedure behave differently with the same code in Mozart Oz?
I try printing out the Fibonacci sequence in Oz using 2 approach : funtion and procedure using Emac as editor.
Procedure goes here :
declare
fun {Fibo N}
case N of
1 then 1
[] 2 then ...
2
votes
1answer
167 views
Collapse SQL rows
Say I have this table:
id | name
-------------
1 | john
2 | steve
3 | steve
4 | john
5 | steve
I only want the rows that are unique compared to the previous row, these:
id | ...
2
votes
2answers
388 views
Get MaxRow Count in MYSQL / Get FOUND_ROWS and data table from Procedure with single call
As need to display Records in grid view in (ASP.NET) web site. and for the same i am using Procedure to return Data to .net Net Framework.
As my problem is that i need table set with return me the no ...
2
votes
2answers
193 views
Does a Oracle procedure inherit the privileges of its creator?
I have 3 Oracle users A, B, C and want to use B (as intermediate) to import a table from C to A. When connected to B, I can run "create table A.T1 as select * from T1@C". But when I put the sql ...
2
votes
5answers
140 views
sql parameters which can be optional
I have this problem where I need to set "optional" parameters for my stored procedure to work fine.
For example, I have this:
CREATE PROCEDURE [dbo].[Search]
(
@StartTime datetime = NULL,
@EndTime ...
2
votes
4answers
484 views
Is it possible in Delphi to get the address of a function/procedure in another process?
I use Madshi's madCodeHook components to Inject a DLL in a process, and then hook a procedure/function. The problem is each time a new version of the EXE comes out the address of the functions may ...
2
votes
2answers
708 views
Procedure to open, write and append in Ada
This question is a follow-up of the post at
http://stackoverflow.com/questions/3171332/ada-file-operation-instantiation-and-exception
about writing to files in Ada.
I chose to place this question ...
2
votes
2answers
2k views
Drop all stored procedures in MySQL or using temporary stored procedures
Is there a statement that can drop all stored procedures in MySQL?
Alternatively (if the first one is not possible), is there such thing as temporary stored procedures in MySQL? Something similar to ...
2
votes
4answers
247 views
Oracle: How can I know a table is getting populated?
I'm in charge of an oracle db where we don't have any documentation (at all). And at the moment I need to know HOW a table is getting populated.
Ideally, I'd like to know from which procedure, ...
2
votes
2answers
870 views
why would one pass an jquery.fn object to the jqueryobject
I am still trying to understand plugin procedure
so I can write my own or adapt another.
I try to learn from this plugin
It sets methods with fn.extend and then passes itself(with this) to some ...
2
votes
3answers
268 views
Fault Diagnostic Process
Has anyone created or seen a good fault diagnostic procedure for a web based solutions that an Operations team could use to do diagnostic and support with?
The solution is based on a C# system ...
2
votes
1answer
931 views
Generic-like behavior in PL/SQL procedure parameters
Suppose I have some data types defined in PL/SQL:
TYPE foo_t IS RECORD (...);
TYPE foo_table_t IS TABLE OF foo_t INDEX BY BINARY_INTEGER;
TYPE bar_t IS RECORD (...);
TYPE bar_table_t IS TABLE OF ...
1
vote
2answers
74 views
I need a procedure for unify multiple insert
I'm new to mysql. I need to unify these 2 insert to make my work faster, but I don't know well sql programming.
First I have to populate wp_terms, than the wp_term_taxonomy using the term_id as key.
...
1
vote
2answers
48 views
What is the quickest way to determine what code will be affected by a refactoring?
I'm using Eclipse and Java, but the answer doesn't need to be specific to those. I'm sure platform specific answers will get plenty of upvotes if they're far quicker than non-platform specific ones.
...
1
vote
1answer
106 views
How can I execute a string in scheme
I how can I execute the symbol '+?
I want to write a function so the input will be some string, for example - '+
and the return value will be: #<procedure:+>
1
vote
3answers
47 views
Whats wrong with this short procedure (MySQL)
Im trying to make a procedure, which will be checking if user is already logged (he got a session, and im checking if his last action was over 15 minutes ago). My procedure looks like this:
CREATE ...
1
vote
1answer
59 views
Create an event inside a procedure - SQL
I need to create an event inside a procedure, I read somewhere that it's possible but I don't know the syntax. I'm trying:
CREATE PROCEDURE DUMMY_PROCEDURE()
BEGIN
CREATE event e on schedule every ...
1
vote
2answers
67 views
Oracle conditional update query
I have one requirement as shown below :
Suppose we have EMP table with 5 rows having deptno = 20 --Here i will get deptno i.e.20 from input paramter
EMPNO ENAME JOB MGR HIREDATE SAL ...
1
vote
1answer
37 views
How to use function returning Oracle REF_CURSOR in a procedure
I have to write an Oracle procedure which should invoke an Oracle function returning REF_CURSOR. The function is declared like that
FUNCTION "IMPACTNET"."TF_CONVERTPARA" (PARASTRING IN NVARCHAR2) ...
1
vote
1answer
45 views
How can I set an oracle procedure's parameter default to the result of a select?
I have an oracle Procedure and I want to set the default parameter to the result of a select statement such as below.
procedure foo( startID number : = max(x.id) from xtable x )
but the code above ...
1
vote
3answers
34 views
Sql procedure to search
I have a stored procedure that will search the whole database. This is the procedure
CREATE PROCEDURE spGetSearchResults
@table varchar(50) = null,
@case varchar(50) = null,
@value ...
1
vote
4answers
124 views
Oracle stored procedure creation from C# code fails for PL/SQL devloper
I tried to create a SQL procedure on an Oracle server. Here is my code,
private const string InsertCallProc =
@"CREATE OR REPLACE PROCEDURE INSERTCALL (Id in varchar2,No in varchar2,
...
1
vote
3answers
189 views
What is a Re-entrant procedure?
What is a re entrant procedure and can you give an example scenario of when it is used?
Edit: Also, can multiple processes access a re entrant procedure in parallel?
Please provide a different way ...
1
vote
2answers
75 views
MySQL Stored Procedure returns Incorrect Value
When I query:
SELECT COUNT(*) FROM train WHERE agree<=0;
It returns 128.
However in my stored procedure:
DELIMITER $$
CREATE PROCEDURE sample(IN _cla VARCHAR(15))
BEGIN
DECLARE _a ...
1
vote
3answers
364 views
SQL 2008 R2 : Could not find stored procedure
I am studying SQL procedure.
I created procedure and I execute. I was fine... and. it displayed
Could not find stored procedure when executed "exec my_procedure"
I am not really sure the ...
1
vote
1answer
453 views
Inno Setup Could not call proc error?
So I'm trying to build an installer for a source port called DXX-Rebirth. I compiled it, and when I run I get a "could not call proc" error right after the language select dialog. The error points to ...