-
Problem using ctx_output.start_query_log in Oracle
Hi,
I'm tryign out the example from here:
http://www.oracle.com/technology/ora...p/o54text.html
I tried the following query, but nothing is being logged inside text_index.txt.
exec ctx_output.start_query_log(
'text_index.txt');
SET SERVEROUTPUT ON
DECLARE
v_title VARCHAR2(50);
BEGIN
FOR y IN 1..10
LOOP
BEGIN
SELECT title
into v_title
FROM songs
WHERE ID = 3
AND CONTAINS (title,
'mice') > 0;
EXCEPTION
WHEN NO_DATA_FOUND
THEN
NULL;
END;
END LOOP;
END;
/
exec ctx_output.end_query_log;
PLease help. Thanks.
Similar Threads
-
By Bjorn in forum Database
Replies: 2
Last Post: 12-18-2002, 03:42 AM
-
By Manuel De Leon in forum VB Classic
Replies: 15
Last Post: 10-11-2002, 12:12 PM
-
By purvi dave in forum Database
Replies: 1
Last Post: 03-03-2001, 04:22 AM
-
By Eugene Chernyak in forum Enterprise
Replies: 0
Last Post: 07-27-2000, 09:35 AM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks