Tagged Questions

3
votes
4answers
215 views

Most efficient way of getting the next unused id

(related to http://stackoverflow.com/questions/3439571/finding-the-lowest-unused-unique-id-in-a-list and http://stackoverflow.com/questions/2116056/getting-unused-unique-values-on-a-sql-table) ...
2
votes
3answers
341 views

Get and store execution time in Oracle

Is there a way to get and store the execution time of a select? select * from table1 Thank you, Radu.
2
votes
2answers
346 views

execution time of a stored procedure

What is the age old method of testing execution time of stored procedures on informix 11.5. I am thinking of doing something like this from a unix prompt: $ time (echo 'execute procedure foo(1)' | ...
0
votes
3answers
126 views

What sql data type should I use to store execution time in milliseconds?

I need to store the execution time (in milliseconds) of a function in a sql field. What data type should I use?
0
votes
2answers
892 views

mysql execution time

Is there a way to get the execution time of the last executed query in mysql?
-2
votes
1answer
33 views

MySQL Basics: query execution and case sensitive

I am a newbie to mysql and having some questions on it, Is there any way to find the execution time of any SQL statement in 'ms' approximation using command prompt (any setting to be done pls ...