Viewing 4 posts - 1 through 4 (of 4 total)
I want to know how can I execute this instruction on dynamic SQL
December 15, 2005 at 5:21 am
I need to execute a process when inserting, updating or deleting.
September 9, 2005 at 2:07 pm
A windows service searches for files on a directory each 1 hour.
When this windows service find the text file, it executes a process.
September 9, 2005 at 1:41 pm
The problem was solved:
SELECT DISTINCT fun.function_desc, fun.function_code
FROM table_1 fun
INNER JOIN table_2 itm
ON fun.function_code = itm.function_code
INNER JOIN table_3 par
ON itm.parameter_code = par.parameter_code
WHERE par.class_code = 1
...
May 17, 2005 at 9:29 am
Viewing 4 posts - 1 through 4 (of 4 total)