在本地文档的HTML标记中搜索单词

时间:2018-11-11 17:34:52

标签: oracle11g oracle-text

我创建了一个简单的html文档:CiaoMondo.html

<!doctype html>
<html lang="it">
    <head>
        <title>Ciao Mondo!</title>
    </head>
    <body>
        <h1>Ciao Mondo!</h1>
    </body>
</html>

使用oracle文本可以搜索该文档的单词。更确切地说,我想在HTML标题标签中搜索单词。

我认为已经通过命令获得了适当的许可权

grant resource, connect, ctxapp to parlamento2018;

grant resource, succeeded.

我还尝试使用以下命令创建索引:

create index idx_informazioni_testi on docs (url)
indextype is ctxsys.context parameters
('filter ctxsys.null_filter section group ctxsys.html_section_group');

create index succeeded.

这样就形成了表notifyazioni_testi:

describe informazioni_testi;
Name                          Null     Type                                                                                                                                                                                          
----------------------------- -------- ------------- 
TITOLO                        NOT NULL VARCHAR2(100)                                                                                                                                                                                 
URL                           NOT NULL VARCHAR2(200)

现在,我有三个问题:

1)HTML文件必须分配在适当的文件夹中,还是可以放置在随机文件夹的系统中?

2)如何将该文件导入字段url中?

3)如何搜索该单词?

0 个答案:

没有答案