Index of text with the section group

I'm using oracle 11.2.0.3.    I now of tables:

org (org_pk, nom_org)

indvl (indvl_pk, indvl_name)

indvl_pk and org_x_indvl table.have org_pk

We seek on the base 1. nom_org 2. indvl_name 3. the nom_org and indvl_name.

Can I create a context index with nom_org and indvl_name as an article and use it to search for above 3 conditions?

spur230 wrote:

I'm using oracle 11.2.0.3.    I now of tables:

org (org_pk, nom_org)

indvl (indvl_pk, indvl_name)

indvl_pk and org_x_indvl table.have org_pk

We seek on the base 1. nom_org 2. indvl_name 3. the nom_org and indvl_name.

Can I create a context index with nom_org and indvl_name as an article and use it to search for above 3 conditions?

Yes, you can create a procedure that concatenates the values with labels and a user_datastore that uses this procedure, create a group of sections with sections, and then use the Group user_datastore and the article as parameters in your create index.  You can then two columns of search or use WITHIN for each column of research itself.  There are many examples on this forum and the online documentation.

Tags: Database

Similar Questions

  • How to bind an index of full text with the catalog in PDF format?

    Hello and thanks for your help.

    I already create PDF files on a folder (with hyperlinks between us) and I use the command 'Tools\Document processing\Full text with the catalog Index' to create an index. now, everything works fine.

    Now, I want to tie this index to my first PDF file to automatically use this index on an advanced search in this file.

    I hope someone can answer me!

    Thank you.

    Now, I want to tie this index to my first PDF file to automatically use this index on an advanced search in this file.

    In the document properties:

  • changing value of text with the cursor

    Hi you all

    I need a help from your side

    I have created a slider and change the size of the listview text with the cursor

    Here is my code

     Slider {
                           id: slider
                            fromValue: 8.0
                            toValue: 16.0
                            value: 8.0
                            layoutProperties: StackLayoutProperties {
                                spaceQuota: 0.1
                            }
                            preferredWidth: 200.0
                            maxWidth: 250.0
                            preferredHeight: 20.0
                            visible: true
                            enabled: false
                            horizontalAlignment: HorizontalAlignment.Center
                   onImmediateValueChanged: {
    
    // descriptionText is the id of label
              descriptionText.textStyle.fontSize = FontSize.PointValue
               descriptionText.textStyle.fontSizeValue = immediateValue
                            }
    
                        }
    
    /***********************************************************************//
    i am adding data to listview using remote source
    
      Container {
                id: listviewContainer
    
                layout: StackLayout {
    
                }
                ListView {
                    id: myListView1
                    dataModel: dataModel1
                    //{
                    //  source: "asset:///models/xmldata.xml"
                    //      }
    
                    // Use a ListItemComponent to determine which property in the
                    // data model is displayed for each list item
                    listItemComponents: [
                        ListItemComponent {
                            type: "item"
                            Container {
                                rightPadding: 20
                                leftPadding: 20
                                horizontalAlignment: HorizontalAlignment.Center
                                verticalAlignment: VerticalAlignment.Center
                                layout: StackLayout {
                                    orientation: LayoutOrientation.TopToBottom
    
                                }
    
                                Container {
                                    topPadding: 40
    
                                    horizontalAlignment: HorizontalAlignment.Fill
    
                                    layout: DockLayout {
    
                                    }
                                    // The Item content container
                                    Container {
    
                                        verticalAlignment: VerticalAlignment.Top
                                        horizontalAlignment: HorizontalAlignment.Right
                                        layout: StackLayout {
                                            orientation: LayoutOrientation.RightToLeft
    
                                        }
    
                                    }
    
                                }
    
                                // Description text label
                                Label {
                                    id: descriptionText
                                 //
                               //     objectName: descriptionText
                                    //  leftMargin: 20
                                    horizontalAlignment: HorizontalAlignment.Right
                                    verticalAlignment: VerticalAlignment.Top
                                    text : ListItemData.des
                                    textStyle.color: Color.create("#868686")
                                    textStyle.textAlign: TextAlign.Justify
                                    multiline: true
                                    textFormat: TextFormat.Plain
                                    textStyle.fontSizeValue: 8.0
                                }
    
                        }
    
                    }
            ]
    
        }
    
        attachedObjects: [
            GroupDataModel {
                id: dataModel1
    
                // Sort the data in the data model by the "pubDate" field, in
                // descending order, without any automatic grouping
                sortingKeys: [ "date" ] //[ "pubDate" ]
                sortedAscending: false
                grouping: ItemGrouping.None
            },
            DataSource {
                id: dataSource1
                objectName: ""
                // Load the XML data from a remote data source, specifying that the
                // "item" data items should be loaded
                source:"http://10.121.10.139/simplehtmldom/getdescnews.php?newsid="+dataSource1.objectName
    
                query: "/news/property/"
                type: DataSourceType.Xml
    
                onDataLoaded: {
                    // After the data is loaded, clear any existing items in the data
                    // model and populate it with the new data
                    dataModel1.clear();
                    dataModel1.insert(data)
                    myIndicator12321.setRunning(false);
                    myIndicator12321.setVisible(false);
                    //      dataModel.insert(data)
    
                }
    
                    }
        ]
    }
    
    // in the end i am calling on creating complete
    
    onCreationCompleted: {
            // When the top-level Page is created, direct the data source to start
            // loading data
            dataSource1.load();
        }
    

    problem I am facing is, it does not find the descriptionText variable, which is the id of the label

    can someone help?

    OK, the problem is that listItemComponents attached to a control, such as ListView have their own context. ListItemComponent documentation refers to what I think. If you must do the following:

    1. do you have a property that is defined as an attribute of the ListView

    2 bind your fontSizeValue to listItemComponent tag to the ListView. Note, however, to do this, you need to get a reference to the ListView using your label ListItem.view is found in the container. Not obvious, I know.

    3. do you have your cursor to update the property you have defined for the ListView.

    Cursor---> p_font_size ListView property<---------->

    Like this:

    {To ListView
    ID: myListView1
    property real p_font_size: 10

     

    listItemComponents:]
    {ListItemComponent}
    type: 'point '.
    ID: sample

    {Of container
    ID: mainListViewContainer

    {Label
    ID: descriptionText

    ..........
    textStyle.fontSize: FontSize.PointValue
    textStyle.fontSizeValue: mainListViewContainer.ListItem.view.p_font_size

    }

    and elsewhere on your page

    Slider {}
    ID: slider

    fromValue: 8.0
    toValue: 16.0
    value: 8.0
    layoutProperties: {StackLayoutProperties}
    spaceQuota: 0.1
    }
    preferredWidth: 200.0
    maxWidth: 250,0
    preferredHeight: 20.0
    visible: true
    enabled: true
    horizontalAlignment: P

    onImmediateValueChanged: {}
    myListView1.p_font_size = immediateValue
    }
    }

    I test it and it works. Please make this response as the solution if it works for you too :-)

  • Siri in him sending text with the value 'NULL '.

    When I say, "Siri, text my wife, 'X', ' Siri responds correctly,"here is your message to Jill: 'X'. "" "  "Ready to send it?"  I say 'Yes' and sends the message.  As soon as I get a text from my carrier saying the recipient of the message was invalid.  100% of the time, I see that Siri has sent a text with the value NULL.

    I tried to restart my phone.  I tried to remove and re-add my contacts.  Anyone else having this problem?  Someone knows how to solve?

    If it's by the carrier, you should contact them and see what they receive in return for their side. Ive had Siri send messages for me and I have never seen this one IOS.

  • How to set the size of text with the report generator

    Hello.

    I'm trying to set the size of the text with the report generator, but I find that I can't do this. Here is an example of the code that I use. Can someone tell me what I'm doing wrong please?

    Thank you, Alec

    I was generation from a word template.

    I hacked my version of the Toolbox to give me maunal indicator control "model? He had obtained his permenatly self stuck on "T". I exposed this flag outside the API, so I can control under certain weather conditions I may or may not use the model police.

    Does anyone know how to use this toolkit, or I did the right thing?

    Cheers, Alec

  • How to display very large text with the font size?

    I'm using html and css to display large text with the font size.

    Label {
        text: "Acit"
    }
    

    In the image below, it is the largest size, although I try to increase the value of the size of the font. Do you know how to display the largest font size?

    Thanhks

    You should be able to amplify it upward with scaleX/scaleY properties, although no doubt quality will suffer somewhat (but probably not significantly, for most people).

  • find and delete blocks of text with the same geometricBounds

    Hi writer... .new question from here:

    mySelection var = app.activeDocument.selection [0] .geometricBounds;

    alert (mySelection);

    throughout the document, I need search and delete blocks of text with the same geometricBounds.

    If possible, the same dimensions, but not the same positions.

    Thanks for the help!

    OK Bala... .in to decimal differences, some executives have not been removed.

    I solved with "Math.round' instead of 'number '.

    ===================

    mySelection var = app.activeDocument.selection [0] .geometricBounds;

    var myWidth = Math.round(mySelection[3]-mySelection[1]);

    var myHeight = Math.round(mySelection[2]-mySelection[0]); Alert (myHeight);

    var allFrames = app.activeDocument.allPageItems;

    While (t = allFrames.pop ()) {}

    {if (t.IsValid)}

    var myTextframe = t.geometricBounds;

    var myTWidth = Math.round(myTextframe[3]-myTextframe[1]);

    var myTHeight = Math.round(myTextframe[2]-myTextframe[0]);

    If ((myWidth == myTWidth) & (myHeight == myTHeight)) {}

    t.Remove ();

    }

    }

    }

    ===================

    Now, your script works great!

    Thank you very much!

  • Firefox 33.0.1 - rendering of the text with the acceleration problems hardware OR not.

    Hello, I have problems with Firefox render wrong text and other graphical problems, regardless of hardware acceleration.

    With hardware acceleration on, I have problems with "ghost text cursors" appearing in various parts of the interface, more particularly in the tabs next to the X button on each tab, but also the other sections of the interface as well. The text is returned to the appropriate thickness, but in some cases flashes back of fixes too thin (see below / stop) in sync with the speed of blinking text cursors.

    With disabled hardware acceleration, I have problems where the text in menus and Web pages is made too thin, making it extremely difficult to see. Issues and artifacts flashing disappeared, however.

    I use a NVIDIA GeForce GTX 750 Ti with the latest version of the driver (344,48).

    This only started happening around 33.0 version, maybe an earlier version (not 100% sure). I really want to look for and choose between what a crappy experience I'd rather have. I just want to how he used to, nice and clean and readable text. What can try to remedy?

    Try disabling OMTC and leave hardware acceleration in active Firefox.

    • layers.offmainthreadcomposition.Enabled = false

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

  • Can I still use Windows journal, if I have the handwriting recognition and just type my text with the default keyboard input?

    I have a Gateway laptop computer and I tried to use Windows journal without handwriting recognition.  So, he feels a bit lame that I can't understand how to enter text with my default keyboard or whatever it takes.  I think I'm pretty computer, so maybe I am an annomaly of persanal that seems to happen to me a lot!  Thus, any help I can get with this problem would be cool.  I type to fast however, just hunt and Peck, so please be patient.  Thanks in advance!

    Best regards, bryznet

    Hi bryznet

     

    Windows Journal is part of the Group of Tablet PC accessories. It is not a keyboard application.
    It is an application ink for taking notes of ink and writing to text conversion.
    If you want to simply type in the text, you can use a word such as Notepad or Microsoft Office Word application.

    If you want a combination of features of ink and/or the text of note taking, then watch Microsoft OneNote (think of it as Notepad Word, OneNote is)
    http://Office.Microsoft.com/en-us/OneNote/

    I hope this helps.

  • Clone blocks of text with the titles bunch

    I hope someone out there can help us with this question.

    We have a book with an illustration on one page and a legend (list of issues) on the opposite page.

    The star of the picture must appear on both pages. The paragraph for the title style uses a format of automatic numbering.

    But we do not want the section on the right for the auto-numbering page, we want to clone what's on the left page.

    Is the a way to clone the title on page 1 (left page) so that it appears on page 2 (right page)?

    The goal is if the text is changed on the left page, the change is also displayed on the right page.

    The problem we found is that the cloned text block takes the next number of topic. For example, "1. Topic' on the left becomes "2. The topic"because of the paragraph style.

    We tried with related stories, text variables, etc., but the title on the right-hand side always takes the next number.

    Thoughts anyone?

    Thank you.

    Bruce

    InDesign CC - Windows

    Could not get this text variable to automatic numbering on the master page, but works well on the pages of the document.

    Thanks for the help!

  • Try to coordinate the text with the video animation

    I have Adobe Presenter 10 and PP 2013.  I want my text to appear at certain times of the video to reinforce what I say in the video.  I noticed that the text does not start until the end of the video.  How do I time the PP text and video to start at the same time?

    Thank you

    Marty

    Animating text must be set on click, and then you must synchronize with the audio. This is possible via the sync button in the Audio section of the Ribbon presenter or in the Audio Editor found by clicking on the button Edit in the Audio section of the Ribbon presenter.

    Video demo of the synchronization tool: Audio synchronization and Timing Animation with Adobe Presenter 7 "Rapid e-Learning | Adobe Captivate Blog

  • I am often unable to enter text with the physical or virtual keyboard, making research and impossible connections in Firefox, forcing me to use Chrome. What to do

    Use Google Nexus 9 with the latest Android. Since one of the recent os updates the keyboard sometimes fails to appear when I enter a text box on a page while using Firefox. This makes research and connections-impossible. Bluetooth virtual and physical keyboards fail to register. It is intermittent. Visit the same page in Chrome has no problem, but I want to continue with Firefox. Please let know us, if I can't fix this I'll have to give up Firefox. Shame!

    Hi Rijumati,
    I understand that there are some forms on a few Web sites that does not load a keyboard to enter data in this text field. I'm happy to help you.

    For the test, can you please give an example where that happens?
    Also this happens with the default keyboard or another has been added?

  • Unable to send a link in a text with the latest version of Thunderbird.

    Since the download of the latest version of Thunderbird, I can no longer create a link in a text.
    I emphasize the word, that I want the link to be associated with and click 'Insert', 'link' and when I try to paste the link in the link box, I get a message not declaring: "no named anchors or the positions on the page. This problem started with the new download.

    Dough press 'Ctrl' + 'V '.

    Make a right click you can only select "named anchors", so if you have none then you get the message 'None of the named anchors or headings on the page' otherwise you would get a pop-up showing the named anchors.

    This has been reported as a bug which you can vote for:
    https://Bugzilla.Mozilla.org/show_bug.cgi?id=1044336

  • Text with the letters No. and TM sometimes display as exhibitor.

    On some web pages, words that begin with the letters NOT or include TM were part of the word displayed as an exhibitor. For example, if the sentence starts with the Word no, the part not of the word has triggered o and stressed that it is an abbreviation for the word number. A reference as STM32F103 number will have the letters TM raised as if it were an abbreviation for the word mark.

    I tried to place different fonts and found that specifically put a font while not allowing the site to replace, it avoids the problem. Unfortunately some sites use characters that I can't identify just, so I normally run with the option to allow pages to choose their own fonts, instead of using fixed fonts.

    On ebay, for example, I have the problem with the characters superscript. I tried to use Google Chrome is a point of comparison and found that the pages display correctly with chrome, but not with Firefox. Search on Google or Yahoo gives me a results page that does not have the characters superscript.

    Is there something that I am missing in the configuration of Firefox which is the cause? I need like sites to choose their own fonts, because otherwise I find myself with looking for very strange pages (even weirder to have numbers or TM poster evil).

    What the font is used for these characters?

    You right click on a web page and select "Inspect element" to open the Inspector (Firefox/tools > Web Developer).

    • You can check the font used for the text selected in the tab fonts in the right pane of the Inspector.

    You can try different default fonts temporarily disable fonts site to test the selected default font.

    • Edit > Preferences > fonts and colors of content > advanced
    • [] 'Allow pages to choose their own fonts, instead of my selections above'

    You can do a test of fonts to see if you can identify not police work.

  • Difficulties with the working groups

    I have connected 2 (Xp & W7) computers using a crossover cable. They are both in the same working group & have fixed ip addresses. These are explicitly permitted in McAfee firewall. However the W7 machine can! see"& read the Windows Media Player library on the Xp machine & it can 'See' but not access other files. The Xp machine is not at the W7 machine.

    Any ideas anyone?

    PS two machines to communicate with each other without any problem!

    Hello

    Maybe this can help.

    ---------------------

    The following looks like a long history (it's only 600 words). I know not what is knowledge of the user, and exactly what has been done already. The info go through the motions of the configuration and verify most of the common aspects of the LAN Windows OS features '.

    All aspects should be checked, declaring that she "worked before" or incessant on"I didn't something ", is not a way to deal withcurrent sharing problems.

    ----------------------

    Win7 when configured on the peer-to-peer network has three types of configurations of sharing.

    Group residential network = only works between Win 7 computers. This type of configuration, it is very easy to entry level users to start sharing network.

    Working network = fundamentally similar to previous methods of sharing that allow you to control what, how and to whom the records would be shared with.

    Public share
    = network Public (as Internet Café) in order to reduce security risks.

    For the best newspaper of the results of each computer screen system and together all computers on a network of the same name, while each computer has its own unique name.

    http://www.ezlan.NET/Win7/net_name.jpg

    Make sure that the software firewall on each computer allows free local traffic. If you use 3rd party Firewall on, Vista/XP Firewall Native should be disabled, and the active firewall has adjusted to your network numbers IP on what is sometimes called the Zone of confidence (see part 3 firewall instructions

    General example, http://www.ezlan.net/faq.html#trusted
    Please Note that some 3rd party software firewall continue to block the same aspects it traffic Local, they are turned Off (disabled).
    If possible, configure the firewall correctly or completely uninstall to allow a clean flow of local network traffic.

    If you end up with the 3rd party software uninstalled or disabled, make sure that Windows native firewall is active .

    Network Win 7 with another version of Windows as a work network (works very well if all computers are Win 7 also).

    In the center of the network, by clicking on the type of network opens the window to the right.

    Choose your network type. Note the check box at the bottom and check/uncheck depending on your needs.

    http://www.ezlan.NET/Win7/net_type.jpg

    Win 7 - http://windows.microsoft.com/en-us/windows7/Networking-home-computers-running-different-versions-of-Windows

    Win 7 network sharing folder specific work - http://www.onecomputerguy.com/windows7/windows7_sharing.htm

    Windows XP file sharing - http://support.microsoft.com/default.aspx?scid=kb;en-us;304040

    In Win XP Pro with simple sharing Off, you can visually see the Permission/security level and set them up at your convenience.

    http://www.Microsoft.com/windowsxp/using/security/learnmore/AccessControl.mspx#securityTab

    Sharing printer XP - http://www.microsoft.com/windowsxp/using/networking/expert/honeycutt_july2.mspx

    Setting Windows native firewall for sharing XP - http://support.microsoft.com/kb/875357
    When you have finished the configuration of the system, it is recommended to restart everything the router and all computers involved.

    -------------

    If you have permission and security issues with Vista/Win7, check the following settings.

    Point to a folder that wants to share do right click and choose Properties.

    In the properties

    Click on the Security tab shown in the bellows of the photo on the right) and verify that users and their permissions (see photo below Centre and left) are configured correctly. Then do the same for the authorization tab.

    This screen shot is to Win 7, Vista menus are similar.

    http://www.ezlan.NET/Win7/permission-security.jpg

    The Security Panel and the authorization Panel, you need to highlight each user/group and consider that the authorization controls are verified correctly.

    When everything is OK, restart the network (router and computer).

    * Note . The groups and users listed in the screen-shoot are just an example. Your list will focus on how your system is configured.

    * Note . All the users who are allowed to share need to have an account onall computers that they are allowed to connect to.

    Everyone is an account, that means a group of all users who already have an account now as users. It is available to avoid the need to configure permission for each on its own, it does not mean all those who feel that they would like to connect.

    Jack-MVP Windows Networking. WWW.EZLAN.NET

Maybe you are looking for