How to recreate a preference for text schema index

I have 10.2.0.3 database. I have a schema that has text schema indexes. I need to load the data to another user.
Here is my steps:
1. create a new user dev.
2. expdp user prod
3. impdp prod to dev META_DATA_ONLY
4. drop schema indexex, otherwise, there is error.
5. recreate schema index.
My problem is when I recreate the indexes. I got this error
ERROR at line 1:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: Oracle Text error:
DRG-10700: preference does not exist: OCS_IDCCOLL1_LEXER
ORA-06512: at "CTXSYS.DRUE", line 160
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364
I ran
select pre_name from CTX_PREFERENCES wehre pre_owner='PROD'
OCS_IDCCOLL1_LEXER
How can I recreate the OCS_IDCCOLL1_LEXER for user dev?
Thanks a lot!

That is not a feature yet. An upcoming update (end of January) will allow multiple fields on a row, which would allow you to create a table. I don't know if there will be a tool that allows you to create a table of fields more easily.
If you can create a PDF form (e.g., with Acrobat) it can have any layout you want, but not all FormsCentral features are available with PDF forms.

Similar Messages

  • How to comment in smartform for text value in abap

    how to comment in smartform for text value in abap.
    i want to comment text value which is coming in output
    From drag and drop option i had dropped an item text in text window and now i dont want to delete it i just want to comment it so can any one help me in commenting the text value.
    Advance Thanks for your help

    hi
    open the text element in the smartform.
    on the left corner, we have text editor button.
    open that and change the editor (goto-->change editor)
    on the new line, give the format as comment line /*. and you can write the comments as required.
    such lines doesnt reflect in the output layout.
    thanks
    pavan

  • How to change printer preferences for HP envy 4500 using Google Chromebook HP pavilion 14

    I want to know how to change printer preferences for HP envy 4500 using Google Chromebook HP pavilion 14?
    This question was solved.
    View Solution.

     Hi chefcorbin,
    Welcome to the HP Support forums.  I understand that you would like to learn how to change the printer preferences using your Chromebook.
    I have included a link to Google support on printing a page with Chrome and it lists the print settings that you can adjust.
    Google Chrome Help - Print a Page
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How do I make groups for texting multiple people at a time and retain that group for future use?

    How do I make goups, in Contacts, for texting multiple people at a time and retain that group for future use?

    How do I make goups, in Contacts, for texting multiple people at a time and retain that group for future use?

  • How to generate XSD file for XML schema adobe form

    Hi,
    I want to generate XSD file for XML schema interfaces adobe forms. How can I do it. Where I can do it..or who will provide this file..
    Thanks
    Ram
    Edited by: Ramesh ram on Feb 23, 2010 6:33 PM

    Aaaaah, my mistake, sorry for that. Of course you should use the XML interface and I forgot it is not described in this tutorial. You can easily find another one where the XML based interface is used. But... you won´t need any tutorial. just create a WD context. Place a Interactive form element on your WD app screen, in the attributes you need to maintain the form template name. If you write a name suitable for you which no existing forms uses, the system will offer you to generate a XML based interface and right after that it will "send" you to the SFP transaction. That means you can like skipi the step defining the interface because it it is generated automatically and you only draw the layout for this generated interface.
    You should use XMl based interface for your WD app, because when using the ABAP dic based, some features are not available (I am not sure, but ABAP based works only for print form or something).
    Hope it is all clear now,
    have a nice day,
    Otto

  • How do you setup ipod for texting?

    I just got a ipod touch and one of the features is the capability to text with it, but I am having problem using it to text as text features require a valid phone number. Can someone explain to me how to use ipod touch to text? All helps will be highly appreciated.
    Thank you,
    Mocis

    Do you have the Messages app? Texting on the iPod is done through Apple's iMessage service. You'll need an Apple ID, and you'll need to enter it under Settings > Messages > Receive At... > Apple ID. If you don't have Messages, then you don't have iOS 5, which means your iPod needs updating. Plug it in to iTunes and it should notify you that there's an update.

  • How to define error message for function based index violation?

    Hi,
    I am generating Forms 6i from Designer 6i. I have a function based index to enforce case insensitive name uniqueness. With check constraints I can specify constraint violation error messages that will be displayed in Forms at runtime if needed. How can I do this with function based index constraints?
    Regards,
    Tamas

    OK, problem sorted.
    You need to create a check constraint with the same name as the new index, but don't enable it.

  • How do I save preferences for automatically filled in text box?

    G'day
    I've got a popup button that lists all the external disks on my computer, and when a user picks a particular file on one of them, the path is displayed in a text field.
    If I edit the field, it's saved automatically, but how do I save/update the preference bindings without editing please?
    Regards
    Santa

    it's OK, I figured it out. For posterity...
    First define the property...
    property NSUserDefaults : class "NSUserDefaults"
    then to read...
    tell standardUserDefaults() of NSUserDefaults
    set tempDiskPath to objectForKey_("DiskPath")
    set tempDayReportDisplay to objectForKey_("DayReportDisplay")
    set thetempYears1 to objectForKey_("theYearsStrings")
    set tempYear to objectForKey_("tempYear")
    set theDayYears1 to objectForKey_("theDayYearsStrings")
    set tempdayYear to objectForKey_("tempdayYear")
    end tell
    the to write...
    on applicationShouldTerminate_(sender)
    -- Insert code here to do any housekeeping before your application quits
    set tempDiskPath to DiskPath's stringValue() as text
    set tempDayReportDisplay to DayReportDisplay's stringValue() as text
    set thetempYears1 to (theYear's itemTitles()) as list
    set tempYear to theYear's titleOfSelectedItem() as text
    set theDayYears1 to (DayReportYear's itemTitles()) as list
    set tempdayYear to DayReportYear's titleOfSelectedItem() as text
    tell standardUserDefaults() of NSUserDefaults
    setObjectforKey(tempDiskPath, "DiskPath")
    setObjectforKey(tempDayReportDisplay, "DayReportDisplay")
    setObjectforKey(thetempYears1, "theYearsStrings")
    setObjectforKey(tempYear, "tempYear")
    setObjectforKey(theDayYears1, "theDayYearsStrings")
    setObjectforKey(tempdayYear, "tempdayYear")
    end tell
    return true -- current application's NSTerminateNow
    end applicationShouldTerminate_

  • How to set default preferences for an enterprise rollout installation?

    How do I establish my own default skin, color scheme and canvas size for an enterprise-wide rollout of X2008 SP3? 
    I have found the Xcelsius.ini file in the root install directory (C:\Program Files\Business Objects\Xcelsius). 
    If I change the skin value in this file to Nova, Xcelsius correctly sets the skin to Nova when running the app.  But it completely ignores my changes to width, height, and colorScheme.
    Is there some other location where these preferences are stored?
    Also, where are my custom color schemes stored?  I would like to include those in my enterprise-wide rollout as well.
    Thanks!
    Chris

    I found my own answer to this question.  The only xcelsius.ini file that seems to matter is the one in the user's Application Data folder under C:\Documents and Settings.  Also, any custom color schemes are stored there as well.
    So for our enterprise-wide rollout, we will just place our versions of those files in that location.

  • How do I adjust preferences for pdf transparency?

    Sometimes I export my Indesign file as an Acrobat pdf preset, using the choice for "smallest size." When I do that I get a message, sounds like something I should correct, that transparency settings not right and that I should change them either in my preferences or in my document. I will attach a picture of what that message says. Problem for me is I don't see how to change anything. I have looked at the "smallest size" present and it says transparency not applicable, but I can't edit this preset in any case. Then in ID prefs, I don't see what to change there either.
    Probably not important but I will put the question out in case it is.
    Thanks,
    — Richard

    What is going on is very simple.
    The Smallest Size PDF export joboptions in fact convert absolutely all content to ICC sRGB color, including black text! (We normally would never recommend these options for any PDF creation, especially if you need to subsequently print the resultant PDF file!) Assuming you setup the document when you created it as a print document, the transparency blend space was automatically set to Document CMYK which is effectively whatever your default CMYK color setting is.
    However, if you create PDF that is totally RGB (again, not recommended), a CMYK-based transparency blend space may cause real havoc when displaying a PDF page that has transparency. With a CMYK-based transparency blend space, content that is involved with transparency rendering is all converted to CMYK, blended in the CMYK color space, and then converted back to RGB. The visual effect may be somewhat poor!
    My recommendation would be that if you really need a compact PDF file from InDesign but maintaining proper color spaces and printability, that you take either the High Quality Print or the PDF/X-4 PDF export joboptions and modify one or the other to downsample the images to some value between 100 and 150 dpi using Automatic (JPEG) with Medium quality. Don't modify other settings. This will cut down the bulk of the PDF file caused by images, the only real aspect of the PDF file size you really have control over anyway. And you won't get the error message you have shown us!
              - Dov

  • How to recreate .microsoft directory for TEE CLC in linux?

    Hi,
    I have accidentaly deleted ~/.microsoft directory in linux after installing TEE-CLC-12.0.2. I cannot get any logs now. How do I reinstall TEE-CLC-12.0.2 and recreate ~/.microsoft so that log files get created inside it.
    Thanks,
    Cirius

    As I see you want to use a cold backup for upgrade procedure.
    I suggest to copy all cold backup files including control, data (temp, sys, all tbs) files, log files, recreate admin directories in the very same location as there existed in the original db server.
    You would also need spfile, pwd file and all others **DBSID** from $OH/dbs dir.
    Once you "restored" your cold backup you can do a manual upgrade.
    Connect sqlplus"/ as sysdba" and "startup upgrade" to test if you get all files in place.
    You would need to prepare this database for upgrade (remove obsolete parameters etc)
    Please check MOS manual upgrade steps docs for more information about upgade.
    e.g.:
    Complete Checklist for Manual Upgrades to 11gR2 [ID 837570.1]
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&doctype=BULLETIN&id=837570.1
    Oracle 11gR2 Upgrade Companion [ID 785351.1]
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&doctype=REFERENCE&id=785351.1
    BTW I'm not sure if RHES 6 is already certified...
    Edited by: Kecskemethy on Oct 27, 2010 4:35 AM
    added upgrade docs links

  • How to configure user preferences for each platform

    Currently i dual boot Kubuntu and windows 7 and use a single profile that is shared by both the OS's. The problem is that some changes such as auto-scrolling, double click to copy url text are disabled/configured differently in linux to what i like. I can manually enable auto scrolling in linux, but when i switch to windows and then switch back it is disabled again.
    Is it possible to make a user.js file that sets preferences based on the operating system, eg: user-windows.js, user-linux.js or something like that? I know I can use different profiles for each OS, but it requires keeping all the addons/bookmarks in sync everytime i switch, which i do atleast a couple of times a day.

    hello, with the mozilla.cfg file in the firefox program folder you can set preferences independent of the profile: http://kb.mozillazine.org/Locking_preferences
    edit: these functions can be used in the mozilla.cfg file:
    defaultPref(); // set default value of a preference
    pref(); // set pref, allow changes during session
    lockPref(); // lock pref, disallow changes

  • How should a batch process for text alignment be configured in PDF

    Hi,
    Using Adobe Photoshop CS5 extended, how can I configure a batch process to align the text on about 700 single page pdfs (of text)?  The text consists of four tables of numbers and one page number per page.
    Thanks.

    Thanks.  I didn't think so.
    I thought it was a Photoshop question (since I know how to do it one page at a time manually in Photoshop) and I did post the question in the Photoshop Forum.  Apparently it's not possible to batch the process in Photoshop, so someone moved the question to the Acrobat Forum.

  • How to Create a group for text in XML publisher template

    Hi-
    Can i try to group the several text of lines so that I can split to a different page, in case text exceeds the page length
    Regards,
    DMAC

    In Mac OS X, every user account is a member of at least one group, and every file and folder has group permissions assigned. Groups give permissions to sets of users who are able to perform similar functions. Mac OS X does not provide an application to easily create and manage groups. Instead, it uses some preset groups to give users permissions and functionality. If you need to create and manage groups, you will need to use Mac OS X Server, or the built in NetInfo Manager.
    If you need more information, any book dealing with OS X and Unix should suffice.

  • Search file for text and delete the found text.  How?

    I need to know how to search a file for text and delete the found text. I think grep will let you do this but not sure of the syntax.

    Hi Dmcrory,
       In addition to what Camelot and nobody loopback point out, one must also consider the fact that UNIX text tools are largely line based. You also fail to tell us for what kind of text you are searching. If you are looking for multiple words, there's a very good chance of finding the expression wrapped onto different lines. With hyphenation, even single words can wrap to multiple lines. Tools that search line-by-line will miss these unless you use multiline techniques.
       Multiline substitutions require that you write "read-ahead" code for the command line tool that you're using and that you take that into account in the substitution. Given how you want the results to be printed out, you may also want to preserve any newlines found in the match, which is even more difficult. That could bring up the subject of line endings but that's a completely different topic.
       I apologize if this sounds discouraging. Multiline searches aren't needed that often and in most of those cases, exceptions can be dealt with by hand. I just didn't want you to get surprised by it. To give you an idea of how easy basic substitution is, have a look at Tom Christiansen's Cultured Perl: One-liners 102 and One-liners 101. Both have some "in-place" substitution examples.
    Gary
    ~~~~
       MIT:
          The Georgia Tech of the North

Maybe you are looking for

  • Slow laptop that I just can't seem to fix - Mingler issue?

    So my laptop has been intermittently slowing to a crawl. It seems from viewing Activity Monitor that the culprit is Mingler which is related to syncing. At it's worst the machine is unusable taking 10-20 seconds or more to respond to a mouse click an

  • Values of fields cleared when navigating to a new page

    Hi In a transaction, I am giving values to the mandatory fields and other fields. From that page, i am navigating to other page for creating a relation or a new contact for that transaction. When i come back to the main page, values in 2 assignment b

  • ' ' in Oracle sql

    Hi Gurus, what is the syntax for this '<>' in Oracle sql Thanks

  • ClassCastException in narrow(...)

    I am trying to run a simple stand-alone client that will look up a bean and get a reference to the home interface of that bean. The code looks like this: System.setProperty("java.naming.provider.url",                "iiop://localhost:1050"); Context

  • Help with Sending Mail

    I am fairly new to the Mail application. I have a gmail account, and I am able to receive emails, but I cannot send emails. A message pops up saying something is wrong with the server. Any suggestions/help would be appreciated. Thanks Ryan