How do you spell check a field?

How are people spell checking their fields?
In searching around, I have only found (a) suggestions to yank the text into MS Word, do a spell check, then yank the resulting text into the field; (b) software from DC AL CODA that we aren't clear how they actually work (http://www.dcalcoda.com).
Specifically, my manager wants a tool that'll interface with Oracle like this: give a table name and a field name and be asked about each spelling error, much like an email spell check. The tool would change things as you ask, directly in the database. You wouldn't have to cut and paste into it and back to the db fields.
We aren't using forms. We use SQL*Plus, Quest Software's TOAD, and our own Java servlets (using JDBC to enter SQL statements).
I would love to hear how people do their spell checking.
Hopefully this is an appropriate forum for this question. There doesn't seem to be a general or SQL forum. Our database tables include a fair amount of text that shows up on Web pages. These are the fields we want to spell check.

I thought I'd reply to my own question since I found a workable solution, at least for our office which has MS Windows.
MS Access can connect directly to an Oracle data source. Access has a spell checking feature where you can select a field and spell check it. Below are tips and instructions for doing this.
TIPS:
It's surely a good idea to back up tables and be the only person or process changing those tables during the spell check.
One thing to watch for is whether the entire table comes in. At the bottom of the screen is a >* button which seems to get all fields. For large tables, you have to hit this button before you get the entire table.
Another glitch is that all of the given database user's tables show up in one list box -- makes for some painful scrolling, but all of the tables are listed.
A much smaller glitch is that if you widened any of the fields in the view of the table, when you close the window, it asks if you want to save the formatting. It has nothing to do with saving the data (that is automatic). It's safe to say no.
The spell check doesn't recognize HTML tags (asks about "br"s from <br> tags) but seems to know to ignore things like &quot;
How to set up an ODBC Data Source in Windows:
1. MS Start -> Settings -> Control Panel -> ODBC Data Sources (32 bit)
2. Drivers tab, scroll down and select Oracle ODBC Driver
3. OK
4. User DSN tab, Add...
5. Select Oracle ODBC Driver and Finish
6. Make up a data source name (example: src)
7. Enter a description for it
8. For Service name, put what your service name is (for an SQL*Plus connection, 'usr/passwd@svc', this is 'svc')
9. For UserID, put your user id (for an SQL*Plus connection, 'usr/passwd@svc', this is 'usr')
10. Ignore the rest of the fields, click OK
11. Another OK.
How to use Access to Spell Check an ODBC Data Source Field:
0. Install Access from (MS Office 2000).
1. Start Access (by the way, you might find it way down the list in Start -> Programs).
2. Open file, in the file type box, scroll to the end: ODBC Databases. You'll get a dialog.
3. Machine Data Source tab, select the name you gave it (src in step 6 above)
4. You'll be prompted for the password (for an SQL*Plus connection, 'usr/passwd@svc', this is 'passwd')
5. Select from the huge list of every table the table you want. Ok.
5.a. If the table has no key, you'll be prompted for the unique key from a list of all fields.
6. Double click the item that has just been added to the dialog that remains on the screen. It'll have a globe next to text like USR_TABLENAME. This brings up a randomly sized first chunk of the table.
7. To make sure you get the entire table, on the paging buttons on the bottom (|< < > >| >*), click >*. It may take a few moments to get a huge table.
8. Click the heading of the field (column) you want to spell check). This selects the entire column.
9. Hit spell check (ABC checkmark tool or Tools -> Spelling)
10. Check away. The changes are made immediately to the database.
11. Close the table display window.
null

Similar Messages

  • How Do You Spell Check in LIVE view using Fluid Grid

    How Do You Spell Check in LIVE view using Fluid Grid???
    When using LIVE view in Fluid grid... Spell Check is only available in Code view... which doesn't seem to work.
    huh... it doesn't end!

    At the moment, you don't.  The Adobe team is aware of it.
    Provide "Design View" for Fluid Grid Webpages
    Nancy O.

  • How do you Spell Check w/ Word, Without using webutil?

    In our v6 forms we were able to use MS Word's spell check, how can I do this with a 10g form without using webutil?

    Jim, thanks for the update. Some of the recent version of Jinitiator have included bug fixes relating to proxies. (though I suppose Support has gone through this with you).
    I don't want to confuse the issue here but while Oracle Forms 10g is only certified on certain JVMs etc, we did run some webutil specific certification tests on Sun JDK 1.4.2 and that was ok (but again please cross reference this the Forms client certification since this testing was just and aside for the webutil QA).
    If you need this functionality I think it would be worth seeing if a bug can be identified in Jinit and seeing if we can fix that -you may have worked with Support on this already...but as I said, check with the latest Jinit anyway to make sure. (1.3.1.17 or 18 I think off the top of my head)
    Thanks
    Grant

  • How do you spell check in PE 11???

    Can someone please advise how to spell check in PE 11???

    That is not part of PSE, unfortunately. Its abilities with text are very modest compared to PS, for example.

  • How do you grey out/disable fields under a radio button if another radio button is selected in Adobe Acrobat XI Pro?

    How do you grey out/disable fields under a radio button if another radio button is selected in Adobe Acrobat XI Pro?
    I’m creating a form where the user has three options to make a payment.
    1. charge to my credit card
    2. charge associated costs to bank account
    3. By cheque or money order
    My Problem is, under each option, there are required fields that has to be filled out. So if the user picks the first option, charge to my credit card, they would fill out the required fields (credit card number, expiration date etc.). But when they click submit button to submit the form, it won’t let them, because there are required fields under the second option. Also, I have the radio buttons for the three options setup so that if the user holds the shift key and clicks a radio button, it unchecks it. So what I'm trying to do is this: If the user selects the radio button for option 1, the other two options are greyed out/disabled. And if the user holds down the shift key and clicks radio button for option one again, it unchecks the radio button and the other two options are available again. Is there a way to grey out or disable the two other payment options when the other one is picked. I’m assuming I will have to use javascript, but what would the coding be and which field do I write it under?
    Thanks in advance guys

    You will have to use custom JavaScript to access the various properties of the field object.
    The radio button group has a value. When no button is selected that value is "Off". When an individual button has been selected the value for the group will be the option or export value for that individual button.
    Once you have determined the button selected, then you will know the form fields that need to be made required. You use JavaScript to access those fields and change the "read only" property to false, and set the "required" property to true. For the fields associated with the other options, those fields should be reset, made read only, and have the "required" property set to false.
    Disabling (graying-out) Form Fields
    >> Also, I have the radio buttons for the three options setup so that if the user holds the shift key and clicks a radio button, it unchecks it.
    Radio button in a PDF do not work that way. Only check boxes can be unchecked by clicking on one that has been checked.
    If you plan the coding for the Mouse UP action to test for all possible options and code for each of those options you should have what you want.
    If you want actual code you need to provide a lot more details.
    It is even possible to perform some credit card and bank routing number validations with JavaScript and some check digit formulas.

  • How to use Spell-check functionality for textbox (like Orkut, gtalk)

    How to use Spell-check functionality for tex Hello Friends,
    I am working on a JSP application. I wanted to add Spell check for text box like we have here, when we post a message. It automatically shows red line under the word, when ever spelling is wrong. Please tell me how I can do this. If possible, the code too.
    Thanks.

    I believe the spell checking you see here, or on any other site, is the spell checking built into Firefox. At least that's what I see. Are you using Firefox?

  • How do I spell check a Pages document in Indonesian?

    How do I spell check a Pages document in Indonesian?

    http://pagesfaq.blogspot.co.uk/2006/11/i-want-pages-menus-in-english-but.html
    Does this get you anywhere?

  • How to use spell checker without mouse?

    Hi,
    how to use spell checker without mouse?
    And how to quickly change between languages related to documents, and be able to quickly get back to the main language setting that should be the default for the system?

    And how to quickly change between languages related to documents
    If you are talking about input keyboards, this is controlled by shortcuts that are explained at the top right of system prefs/language & text/input sources.

  • HT201342 How do I spell check when composing an e-mail?

    How do I spell check when composing an e-mail

    Webmail sites typically have a link tool that appears on the formatting bar above the compose box. The specifics might vary but generally speaking, if you click the button for the link tool, paste the link, then OK that, a link should be inserted at the current cursor position.
    To see what I mean for Yahoo! mail, check out this thread: [https://support.mozilla.org/en-US/questions/938081 url is not highlighted when sending it on an email and cannot be directly accessed].
    Does that help?

  • How do you dynamically check if all member children are missing?

    Hi All,
    How do you dynamically check if all member children are missing?
    e.g. the below line does not work because you cannot directly use member sets in an IF statement.
    IF ((@CHILDREN ("Profit")==#MISSING))
    If I explicitly list all children in the IF statement, it will work, but there is alot of hardcoding.
    Thanks in advance.
    Darren

    Hi All,
    We have a BSO app and we need to query the account without aggregating the data..
    We have 4 accounts sitting under Profit:
    Profit
         A001
         A002
         A003
         A004
    @SUM (@DESCENDANTS ("Profit")) works fine, but we also need to sum the accounts for the parent member of the current business that is evaluated, I have tried @SUM (@DESCENDANTS ("Profit")->@PARENT ("Business")) but this does not work.
    This however works...
    @SUM(
    @PARENTVAL("Business","A001"),
    @PARENTVAL("Business","A002"),
    @PARENTVAL("Business","A003"),
    @PARENTVAL("Business","A004"))
    Is there a dynamic method to add the parent values together?
    Cheers,

  • How can I Spell Check with an Action?

    Hi -
    I can use the Spell Checking command while I'm recording a new Action but when I play that
    Action it gets stuck on the first step... "Spell Check in contents of all text layer".  I didn't write that first step - PShop did while I was recording the Action.  Whe I try to use the Action I get an alert ... "The object "in contents of all text layer" is not currently available."
    If I hit Stop - the Action stops.
    If I hit Continue - the Action stops.
    So how do I Spell check using an Action?  I plan to use this in a batch process. I have about 300 files and automating this would be great.
    TIA any insight,
    JL
    --Photoshop CS5, Win 7

    See if using Insert Menu Item works for the spell check.

  • How can you trim the contact field value without cloudconnector?

    How can you trim the contact field value without cloudconnector?

    You can add your contacts to segments, while right-clicking on the criteria you have added in segments, you will see the option for Merge, Intersect & Trim.
    See the attached URL, it might help you .
    Merge, Intersect, Trim

  • How do you change an xml field inside of a database?

    Please: can you tell me how do you update an xml file?
    I mean how do you edit an xml field?
    Paola
    @{---->>----->---------                                                                                                                                                                                                                                                                       

    It should work for Oracle 9.2 and 10.2
    Thank you Dany.
    Regards.
    Paola
    @{--->----->>----------                                                                                                                                                                                                               

  • How do I spell check a signature once I've created it in settings?

    I've created and saved the signature but it underlines my street and city. I don't know how to spell check it so I can make those go away.

    If you have spelled all the words correctly then you can ignore this underlining because not all street names and city names are in the spell checking dictionary.
    If you use such words frequently then you can add them to the dictionary via the right-click context menu (Add to Dictionary)
    *http://kb.mozillazine.org/Dictionaries
    *http://kb.mozillazine.org/Spell_checking
    *https://support.mozilla.org/kb/Using+the+spell+checker

  • How to reinstall spell check

    My spell check in Mountian is no longer functioning in any application. (mac mail, Text edit) How can you reinstall spell check

    In System Preferences, click on "Language & Text" and choose the "Text" tab at the top. Make sure the "Correct spelling automatically" option is enabled (checked) and that the options on that screen are configured to your liking (for instance, making sure the Spelling language is set to the language you are using or set to "Automatic by Language".

Maybe you are looking for

  • How can I assign index markers to a list of names coming from Excel

    I have to build up indexes on directories. The list of names comes from Microsoft Excel and is saved as a text file. I need to assign index markers to the list (sometimes up to 2000 names) so I can build up an index after the layout is done.

  • SSO does not work in Universe Designer

    Hi, I have a problem getting an error within Universe Designer the error is : "DBD: Unable to connect to SAP BW server Incomplete logon data" Installed below : BOBJ XI 3.1 installed SAP GUI 7.10 SAP Java Connector SAP Integration Kit All is run on th

  • CS5 Extended Adobe Bridge Not Working

    I am using CS5 Extended Adobe Photoshop Student and Teacher Edition. It was working properly not 'til I installed Check It Registry Cleaner this morning. When I started to work on certain pictures I took this afternoon, and I open Adobe Bridge so I c

  • Thread as object

    Seems to be very easy question: a thread is an object derived from the Thread class. This makes me think threads are 'common' objects that obey to the rules of java object orientation. Suppose now that we have a program to accept tcp connections, lik

  • PSE6 Serial Number Help?

    I recieved a bamboo fun tablet about two years ago for Christmas, and installed the free PSE6 that came with it on my computer at my moms (my parents are divorced) However, I live with my dad, and recently my mom allowed me to bring my Tablet and the