FullText index blocking word contains with (S)

Hi,
My table column have "school(s)" value.
I have created full text index for this table.
And executing the below query first query not returning any records and second query returning records.
select * from TABLENAME WHERE CONTAINS(ColumName, '"school(S)"') 
select * from TABLENAME WHERE CONTAINS(ColumName, '"school(s)"') 
Difference between both query is (S).
Thanks in advance

Hi Radhakrishnan,
Full-text queries are not case-sensitive. For example, searching for "Aluminum" or "aluminum" returns the same results. Please refer to the article below:
Full-Text Search (SQL Server):http://msdn.microsoft.com/en-us/library/ms142571.aspx
I tried to repro this issue on my test environment, but it will return the expected reuslt. Here is the sample code for your reference, please see:
CREATE DATABASE FULL_SEARCH_TEST
USE [FULL_SEARCH_TEST]
Create Table FullText_Search
Id Int Primary Key Identity(1,1),
Name Nvarchar(50)
GO
INSERT INTO FullText_Search VALUES('school(s)')
INSERT INTO FullText_Search VALUES('Test1')
INSERT INTO FullText_Search VALUES('Test2')
SELECT * FROM FullText_Search
GO
CREATE FULLTEXT CATALOG FTSearch
GO
--Show all constraint names
SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
CREATE FULLTEXT INDEX ON FullText_Search
(Name) KEY INDEX PK__FullText__3214EC077EC2BD1F
ON FTSearch;
SELECT * FROM FullText_Search WHERE CONTAINS(Name, '"school(s)"')
GO
SELECT * FROM FullText_Search WHERE CONTAINS(Name, '"school(S)"')
I would suggest you share your DDL+DML to us for further investigation. Don't forget to let us know the version of your SQL Server.
Regards,
Elvis Long
TechNet Community Support

Similar Messages

  • How to fulltext index more words - for example P A NC

    Hi everybody,
    I need to fulltext index a special phrase, for example P A NC, B A KLP, PO A BZ, etc. White space is standard delimiter words.
    I need oposite to stopwords
    Could you help me
    Thanks
    Martin

    Not quite sure what you're looking for.  You can turn off stopwords by using "stoplist ctxsys.empty_stoplist" in the parameters clause.  But are you looking to index those phrases as single tokens?  That can't be done without pre-processing the text in some fashion, perhaps replacing the spaces with a special character and defining that as a PRINTJOINS character, so that "P A NC" is indexed as "P+A+NC" or similar.
    SQL> create table foo (bar varchar2(2000));
    Table created.
    SQL> insert into foo values ('the quick brown P A NC jumps over the lazy B A KLP');
    1 row created.
    SQL> update foo set bar = regexp_replace( bar, 'P A NC', 'P+A+NC');
    1 row updated.
    SQL> update foo set bar = regexp_replace( bar, 'B A KLP', 'B+A+KLP');
    1 row updated.
    SQL> select bar from foo;
    BAR
    the quick brown P+A+NC jumps over the lazy B+A+KLP
    SQL> exec ctx_ddl.create_preference('mylex', 'BASIC_LEXER')
    PL/SQL procedure successfully completed.
    SQL> exec ctx_ddl.add_attribute('mylex', 'PRINTJOINS', '+')
    BEGIN ctx_ddl.add_attribute('mylex', 'PRINTJOINS', '+'); END;
    ERROR at line 1:
    ORA-06550: line 1, column 15:
    PLS-00302: component 'ADD_ATTRIBUTE' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    SQL> exec ctx_ddl.set_attribute('mylex', 'PRINTJOINS', '+')
    PL/SQL procedure successfully completed.
    SQL> create index fooindex on foo(bar) indextype is ctxsys.context
      2  parameters ('lexer mylex stoplist ctxsys.empty_stoplist');
    Index created.
    SQL> select * from foo where contains (bar, 'B+A+KLP') > 0;
    BAR
    the quick brown P+A+NC jumps over the lazy B+A+KLP

  • SiteStudio won't start with fulltext indexing enabled

    Hi,
    A total newbie to UCM here. Have downloaded the distribution from the [UCM product page|http://www.oracle.com/technology/software/products/content-management/index.html] and installed content server, dynamic converter and the 10gR4 Web content management component on Centos 5.4 (fully patched) using the latest available Oracle XE database, and applied all the relevant published patches from the OUCM 10g Patch Update Bundle. I've also installed the Ravenna Hosting Tutorial, and can access it fine directly and through the SiteServer Manager. I can update content using SiteStudio Contributor fine. So far so good.
    My config is:
    <installdir>/ucm/idc/config/config.cfg contains all between the '+++++' lines:
    ++++++++++++++++++++++++++++++++++++++++++++++
    <?cfg jcharset="UTF8"?>
    #Content Server System Properties
    IDC_Name=idc
    IdcProductName=idccs
    SystemLocale=English-US
    InstanceMenuLabel=idc
    InstanceDescription=Content Server idc
    SocketHostAddressSecurityFilter=127.0.0.1|192.168.0.*
    #Database Variables
    IsJdbc=true
    JdbcDriver=oracle.jdbc.OracleDriver
    JdbcConnectionString=jdbc:oracle:thin:@localhost:1521:xe
    JdbcUser=idc_user
    JdbcPassword=SRMtbwoinSEPrcJ7gK7mEaFKW5HpgfauP8tk2UfIxtI=
    JdbcPasswordEncoding=Intradoc
    DatabasePreserveCase=true
    #Internet Variables
    HttpServerAddress=192.168.0.10
    MailServer=192.168.0.2
    SysAdminAddress=<+a valid email address+>
    HttpRelativeWebRoot=/idc/
    CgiFileName=idcplg
    UseSSL=
    WebProxyAdminServer=true
    #General Option Variables
    IsOverrideFormat=false
    DownloadApplet=false
    MultiUpload=false
    IsAutoNumber=false
    UseCollaboration=true
    EnableDocumentHighlight=false
    EnterpriseSearchAsDefault=false
    IsJspServerEnabled=false
    JspEnabledGroups=
    #Additional Variables
    SpecialAuthGroups=Projects
    ZonedSecurityFields=
    DatabaseType=oracle
    SearchIndexerEngineName=DATABASE.FULLTEXT
    WebServer=apache
    IdcAdminServerPort=4440
    IntradocServerPort=4444
    ++++++++++++++++++++++++++++++++++++++++
    I've installed SiteStudio Designer R4 onto Windows 7. When I try to connect to the site using designer, I get an error dialog containing:
    "Failed to get search results with query "Fragment".
    (Unable to retrieve search results. Unable to retrieve search results. Unable to
    create result set for query 'SELECT * FROM (SELECT q.*, RowNum rowIndex
    FROM (SELECT dDocName, dDocTitle, dDocType, dRevisionID,
    dSecurityGroup, dDocAuthor, dDocAccount, dRevLabel, dFormat,
    dOriginalName, dExtension, dWebExtension, dInDAte, dOutDate, dPublishType,
    dRendition1, dRendition2, VaultFileSize, URL, dFullTextFormat,
    dFullTextCharset, DocMeta.*
    FROM verity.1, DocMeta
    WHERE verity.1.dID=DocMeta.dID AND
    ((UPPER(xWebsiteObjectType) LIKE UPPER('Fragment') AND
    xWebsiteObjectType IS NOT NULL)) ORDER BY dInDate DESC) q WHERE
    ROWNUM < 201) WHERE RowIndex >=1'.ORA-00907: missing right parenthesis"
    When I click "OK" Designer shuts down.
    If I set
    SearchIndexerEngineName=DATABASE.METADATA
    Designer startes fine.
    Has anyone ever seen this before, or have any suggestions as to how to fix it?
    I have installed on two separate systems, in two separate locations (one at work, the other (in desparation) on a brand new machine - quad core, 4GB memory) and am getting identical results so it's either something in the software or I'm doing something really, really stupid in the installation somewhere.
    Thanks to anyone who takes the time to read, at least, and hopefully give me a clue....
    Cheers
    Brad

    I was having the same issue and had to follow the metalink steps to get it to work:
    Error "Unable to index metadata only. The collection might be damaged" After Switching to Database Fulltext Indexing or OracleText Indexing [ID 748186.1]
    To resolve this issue, please follow these steps:
    1. Stop the Content Server services.
    2. On the Content Server's file system, navigate to <ContentServer>\search
    3. Open the file 'activeindex.hda'
    4. Search for the configuration entry, "ActiveIndex"
    5. Change the value of this entry to 'IdcColl1' or 'IdcColl2' (i.e. "ActiveIndex=IdcColl1") in case for FullText
    and in case of OracleTextSearch ots1 or ots2( i.e. "ActiveIndex=ots1")
    The search collection is presented in two spots in the activeindex.hda file. Both entries should be changed
    6. Save the change and close the file
    7. Remove or rename all files under the following locations:
    - <ContentServer>\search\lock
    - <ContentServer>\search\update
    - <ContentServer>\search\rebuild
    8. Start the Content Server services
    9. Log into the Content Server as a user with admin rights (i.e. sysadmin)
    10. Go to 'Administration' > 'Admin Applets'
    11. Start the "Repository Manager" applet
    12. Select the 'Indexer' tab
    13. Under the "Automatic Update Cycle", click 'Configure...'
    14. Uncheck the "Indexer Auto Updates" option
    15. Click OK
    16. Under the "Collection Rebuild Cycle", click 'Start'

  • 32-bit iFilter with Reader 11.0.10 cannot be found by SQL 2012 Fulltext Indexing on Windows 7 32 bit. How can I fix this?

    I have verified that a record shows up in the fulltext system components (EXEC sys.sp_help_fulltext_system_components 'filter').
    componenttype    componentname    clsid    fullpath    version    manufacturer
    filter    .pdf    E8978DA6-047F-4E3D-9C78-CDBE46041603    C:\Program Files\Adobe\Reader 11.0\Reader\AcroRdIF.dll    11.0.0.379    Adobe Systems, Inc.
    I have also added Reader's installation folder to my system PATH variable, and ran these 3 things:
    EXEC sp_fulltext_service 'update_languages';
    EXEC sp_fulltext_service 'load_os_resources', 1;
    EXEC sp_fulltext_service 'restart_all_fdhosts';
    and then dropped and re-created my fulltext index.  For each row in the table, I receive a message like this:
    Warning: No appropriate filter was found during full-text index population for table or indexed view '[DocumentIndexing].[dbo].[Document]' (table or indexed view ID '277576027', database ID '8'), full-text key value '17'. Some columns of the row were not indexed.
    In the Registry, under HKEY_CLASSES_ROOT / .pdf / PersistentHandler is the value {F6594A6D-D57F-4EFD-B2C3-DCD9779E382E}.
    I have tried several times to install/fix my PDF installation, restart SQL Server, Reboot my laptop, etc.  All to no avail.
    I saw the article on the 64-bit filter and was able to successfully do that on another workstation (Windows 8.1 64-bit SQL 2012).  However, I really need this working on my laptop.
    Do you have a solution or workaround or some recommendations for me to move forward with this?
    Thanks,
    Dave

    I found the solution.  Here it is:
    Take backup of below registry key.
    HKLM\SOFTWARE\Microsoft\Cryptography\MachineGuid This key should ideally have the GUID of the machine without curly braces, so {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} becomes xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    Then delete the braces.
    Try to reboot and start the SQL service . If service don’t start then Uninstall and reinstall SQL.
    The MachineGuid had curly braces so I removed them and rebooted my laptop.  Now both instances of SQL Server start.  It is the last post of this thread:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/56f14665-3f00-41ff-b002-bb5e86b3f219/sql-server-not-starting-fallback-certificate-initialization-failed?forum=sqlsecurity
    He states that he got it from Microsoft but did not give the url.
    Thanks for all your help.
    Fred Schmid

  • CONTAINS clause still works after disabling fulltext index on a table

    I disabled the fulltext index on a table using the below query:
    USE <dbname>;
    GO
    ALTER FULLTEXT INDEX ON <table_name> DISABLE
    Per BOL, "The table will not support full-text queries while the index is disabled.", I would expect the CONTAINS clause to stop working but I can still return rows from the <table_name> as before.
    SELECT top 10 * 
      FROM [dbo].[table_name]
      WHERE CONTAINS(<column>, N'test');
    The above returns 10 rows before and after disabling the index.
    Do i need to do something else?
    I even tried DENY permissions:
    DENY CONTROL, TAKE OWNERSHIP, ALTER, REFERENCES, VIEW DEFINITION ON FULLTEXT CATALOG::<catalog_name>
    TO <some_database_roles including public>
    Please help.
    Thanks
    Thanks

    Charles,
    Do you have any DDL Triggers on your server that might affect whether the full text index could be disabled?
    Any Policies that might likewise affect your results?
    RLF

  • Quering database with word containing apostrophe

    hi all,
    hopefully someone can help me with this, i am trying to query an sql database with a word containing an apostrophe from within my .jsp file. How do i go about replacing the " ' " with " '' " for all query's made?
    any help would be great,
    thanks,
    KJ
    **

    There's quite a few threads on this issue...go to the Forums home page, search the JDBC forum on "escape characters" and read the results. Here's a sample:
    http://forum.java.sun.com/thread.jsp?forum=48&thread=147408

  • I cannot send a Pages document, Word format via email from my ipad if it has a picture in the the doc.  I can send a Word doc if it does not have a pic in it or pdf with a pic.  Any thoughs why a word doc with a pic in it won't email in Pages?  thanks

    I cannot send a Pages document, Word via email if the doc contains a picture.  If I email a Pages doc without a pic in Word format or pdf with a pic it with go through to sender?  Not sure why Pages won't send Word doc with a picture in it.  I check the security on the email recipient and the email doesn't get blocked or throw in the junk box?
    thanks,
    drainguy41

    If you have upgraded to Mountain Lion, Save As… has returned to the File menu when you hold down the Option/alt key. But you don't really "save" as other file types, you translate & export as Word or RTF or text or PDF & that is easily done by going to File > Export or Share > Export.
    Also, please do us all a favor & don't use all capitals in your posts, either the body of the post or the title. All caps is the internet equivalent of shouting & is very hard to read.

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

  • Updating index from Word file in Book feature

    I prepared a book using the book feature. 15 chapter files making up the book. The client is going to supply the Index as a Word file with page numbers from his book's word file, which I was hoping to spill into a file in the book and Update the page numbers. I have done this when the book is all one file, but will it work in the book feature? Also, what if a thread is broken somewhere (there were lots of photographs and I think that may have happened a few times). Will that effect the indexes ability to update the page numbers (provided it even works in the Book feature)?
    Thanks!

    Little Toddler wrote:
    The client is going to supply the Index as a Word file with page numbers from his book's word file ...
    That's No Good. The page numbers as they were in the original Word file are worthless.
    .. which I was hoping to spill into a file in the book and Update the page numbers.
    InDesign cannot update the page numbers in an index that was created with Word.
    I have done this when the book is all one file, but will it work in the book feature?
    Uh. Perhaps you did not (see above). Only if you made this index entirely in InDesign is when that's possible. (But yeah, "Include Book" is an option in the Generate Index dialog.)
    Also, what if a thread is broken somewhere (there were lots of photographs and I think that may have happened a few times). Will that effect the indexes ability to update the page numbers (provided it even works in the Book feature)?
    Proper or improper threading is not a problem.
    The problem is you must distinguish between an index made in Word and one made in InDesign -- and I mean "made with", not just "typed in". If your writer supplies you an index made in Word, you can throw it out of the window. What good are his page numbers to you? You can only mimick his index (sort of) if your processed InDesign files still contain the original Index Markers that the author used in Word, and then you are using the same workflow, not "updating the author's index".
    If there are no index markers in your InDesign files, that's where it stops for you. Perhaps you want to insert them, one by one, in their original location (using the supplied index as a guide) -- only then you can create an up-to-date index with InDesign and using your page numbers.
    There is another option: if your author used Word's features to generate the index with, he could try the opposite. That is, you hand him a PDF of the latest version of your book, and he inserts page breaks and adjusts page numbering in his Word document to match yours, word by word. This can be done quite fast because all other formatting is not important -- it's the What's on this Page Number that counts. When done, the author can use Word again to re-generate the index, and hey! the page numbers will match the final version!
    Of course this only works when the author actually used Word's native indexing facility -- if he typed in each entry and its associated page numbers, you got yourself quite a job trying to find what word went where in your version.

  • Synchronize fulltext index

    hi Experts,
    My customer need to use GoldenGate to synchronize all index of ECM from one site to another, is this possible?
    Which table is used for metadata index and full-text index? I am using ecm11.1.1.5 with oracle text search engine, I need to check that table schema.
    Best regards
    Lan

    user9341163 wrote:
    Hi,
    I have a question regarding FULLTEXT Index.
    Let say I have the following table:
    id (INT, PK)
    data (TEXT)
    The column ‘data’ could contain sentences from different languages.What do you mean by this? Do you mean that the data might look like
    ID, DATA
    1, 'I am English'
    2,'Je suis Francais'
    i.e each row only contains data from one language, or do you mean that the data might look like (with apologies to my German friends)
    ID, DATA
    1, 'I am an English column aber mit Deutsch gefunden'
    i.e each row can contain within it text in more than one language?
    Niall
    I would like to define FULLTEXT Index on the column ‘data’ in order to support string search.
    So my questions are:
    1. Does the FULLTEXT index supports multi languages in one column?
    2. Will it have any impact on the performance vs. a scenario where the column will only contain only one language?
    Thank you in advance for your comments

  • PDF indexing of Word.doc Keywords: kind of disappointing

    If we could embed document properties like Keywords in Word, and then convert Word.docs to PDFs , and then index the PDFs using Acrobat Pro, theoretically it would allow for lightning-fast keyword search and review, through a zillion PDFs.
    Except, there are unexpected glitches that are either undocumented... or, if the documentation exists, it's either hard to find or too scantily worded.
    Here's a few things I've observed, using Windows XP, Office 2007 and Acrobat 8 Pro:
    1. Word document properties only transfer over to PDF if you use the Acrobat tab in Word's ribbon to generate the PDF via PDFMaker, which apparently invokes some 'more robust' implementation of Distiller, than occurs if you simply use the print dialog to print to PDF.  THIS IS PROBABLY A BIG SOURCE OF USER CONFUSION THAT DISCOURAGES MANY USERS FROM GOING ANY FURTHER WITH EXPERIMENTING WITH PDF INDEXING OF WORD DOCUMENT PROPERTIES.  IT CAN LEAD YOU TO CONCLUDE THAT NONE OF THE WORD DOCUMENT PROPERTIES EXCEPT FOR TITLE, CAN SURVIVE A PDF CONVERSION.
    2. When you invoke PDFMaker, when the "Save Adobe PDF File As" dialog appears, you must click on the button at the bottom that is labeled "Adobe PDF conversion Options' and verify that the "Convert document information" check box is checked. (This may be able to be set as a permanent user preference somewhere, but I'm not quite sure where.)
    3. The Properties fields in Word that will come over, include Title, Author, Subject, and Keywords.  (The Comments field is ignored, as far as I can tell.)
    4. You can now index the PDFs, and these Properties fields will also be indexed.....well, Sort Of.
    5. "Sort Of", because if you then search for any of the text in your Properties fields, (like for example you search for a word or phrase that you've embedded in their Keywords fields), the advanced search result won't be displayed quite the way 'found hits' normally display in a PDF index search results screen.   You may expect to see the contents of those Keywords fields, show up in the search results in a long list of 'found' file icons with ALL (or a generous selection) of their surrounding Keywords also displayed, and with the specified found keyword highlighted in BOLD.
    But, that's not what happens. What you really get is an icon showing the contents of the Title field (which you didn't search for.) It basically means that Acrobat has found a document with something you searched for, in it....but Acrobat is not going to show it to you as easily as you are accustomed to seeing it. You only have two choices: (1) either hover your mouse over each found file's Title icon, one by one, until its screentip-type popup window appears, showing you all the contents of all four of that document's Properties fields; or (2) click on the icon, display the PDF, go to File Properties, and observe that file's properties dialog box.
    This is disappointing: the fast, easy, contextual lookup advantages you've enjoyed with regular PDF index searches appear to be unavailable when it comes to viewing search results on indexed document properties. I can understand the logic; (why show other keywords surrounding the searched-for keyword? If they're not in a sentence, there's really no contextual relationship, and therefore no reason to show them.)
    However, what if users wanted to store logically related keywords in a deliberate organized pattern..ie,
    Texas, Car, 1999, Ford, Mustang, Green
    Texas, Car, 2000, Ford, Mustang, White
    Texas, Car, 2000, Ford, Mustang, Yellow
    Texas, Car, 2000, Chevrolet, Corvette, Blue
    Ohio, Car, 2006, Honda, Civic, Silver
    ...etc.
    In this context, all keywords are logically related; it could be a big advantage to be able to use PDF Index search to instantly find and view a list of all 5,328 White 2000 Ford Mustangs located in Texas....then pop up their insurance.doc PDFs for further details.
    Allowing the user to set a preference to 'show all stored propery values in the search results' instead of an arbitrary length string of surrounding values, could also be very helpful, so that the full information depicted in the above example could actually be fully displayed, not arbitrarily truncated.
    I guess the only workaround is to forget Word's Document Properties, and just embed keywords within the document itself, such as maybe at the end of the document, maybe colored white (so they can't be easily seen).  Formatting them as hidden text doesn't work; Acrobat ignores hidden text when you convert from Word to PDF.

    I seem to get hard returns in all cases. That is why I had the short answer. I do not remember if saving as a DOC got rid of the hard returns. Of course the simplest way to find out is to try it. I went to another machine and the Save As to a DOC file did not put in the hard returns (cut and paste did). I should note that the PDF was produced from a totally different word processor and was not a WORD native document. That would suggest it is not dependent on the tags that can be included by WORD and PDF Maker.

  • Word merge with MS_WORD_OLE_FORMLETTER

    We want to do a word-merge with MS_WORD_OLE_FORMLETTER, having two datasets (in internal tables) and making two documents in one run (to make sure all selections are the same). When trying this the word-template-document (or how do you call that) has to be openen beforehand and before being able to make the second document we have to close the first and open the second template.
    Has anyone have an idea what might be wrong ? What parameters can influence this behaviour ?
    Thanks.
    Kris

    Hi Graham,
    Did you receive any error message ? some thing like  40552 : The session has been
    terminated because of excessive transaction log space usage. etc., Please share if any to isolate the issue.
    Regards,
    Shirisha Paderu
    Disclaimer : This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or
    information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and
    Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

  • Why does text I copy from a .pdf to a Word document, not copy correctly words containing the combinations 'tt' or 'ti'?

    When I copy text from a .pdf to a Word document, all words containing the combination 'tt' or 'ti' come up as blank boxes,or question marks.  How can I correct this?

    To comment a bit further, several letter combinations like tt and ti as well as many combinations with f are given as a single character in some languages and apparently you do not have that special character on your system.

  • Saving Word docs with balloon comments

    I think that this is a Word issue, not an iMac issue, but I could not find the Word for Mac forum.
    Word has started doing something new and irritating, and I can't figure out why, since I have not changed any preferences, etc.
    Now, when I hit the Save command and am working in a document that contains balloon comments, I get a query box that says "The document being saved contains comments. Continue with Save" and I have to click "save" or "cancel" each time.
    This is a huge problem for me because I correct my students' papers. and often work on client documents (I'm an editor and writer(, using the Comments feature, and I save very often (for obvious reasons!) — meaning that I am getting that annoying dialogue box all the time. I want to tell Word once and for all that yes, I want to save documents with comments in them, and to stop asking me every single time I hit Save.
    Does anyone know how to turn off this feature which, as I said, has just started appearing for no apparent reason.  I looked everywhere I could think of in Word Preferences, but no luck.
    Basic info: I have both the 2004 and 2008 versions of Word, both with the latest application updates. This annoyance occurs regardless of which version I'm working in. Using an iMac with OS 10.6.8 (Snow Leopard).
    Thanks.

    Sorry, don't know the answer to your question, but the Microsoft Word forum is here:
    http://www.msofficeforums.com/word/

  • Opening Word documents with Appleworks

    I often receive Word documents as email attachments (though my hotmail account). I can download these Word documents to my desktop but when I click on them to open them I get an offer to purchase MS Word (which I do not have). I would like to be able to simply open the Word documents with Apple works--and I am hoping I can just click on them and have that happen automatically. But it doesn't. I have tried opening Appleworks and going into the wordprocessing program and then opening the Word document through that, but it only is successful part of the time. What can I do? I would like to have these Word douments open automatically in Appleworks but every time I click on them (i.e., their icon on my desktop) I get that advertisement from Microsoft asking me to buy Word. Is this ad blocking a normal function of Appleworks that would otherwise allow me to open Word documents with a click? And in any case, how can I proceed?

    The ad for Word is almost certainly being tacked on through or at Hotmail (taglines or adware from Hotmail? Hoodathunk .....) ; it sure isn't coming from AppleWorks or from anything on your own system, unless you have that demo copy of Office still lurking somewhere. I suppose it could come from that, somehow.
    Assuming you can get a clean attachment downloaded to your Desktop from Hotmail, the procedure for having what you want to happen automatically is fairly straightforward and, really, has nothing at all to do with Appleworks. Try the following:
    --> Select (highlight) one of those downloaded .doc files from Word, then
    --> use the Finder's Get Info command (⌘-I). In the window which appears,
    --> see the "Open with" section, and set it to AppleWorks.

Maybe you are looking for

  • Is it possible to easily view the actual (not displayed) value of a cell?

    Is it possible to easily view the actual value of a cell calculated by a formula, not the displayed value after it has been rounded off? For instance, if you enter the number 1.23456789 and display it rounded to 3 decimal places, you can still see th

  • Video problems after coming out of sleep mode

    Here's my setup: Apple TV connected to HDMI switch (Rocketfish) then to Samsung DLP TV. If I turn everything off and then later in the day try to watch the Apple TV, I get sound, but no picture. I shouldn't say "no picture" as the TV detects input (i

  • Problem in getting default value for Basic Pay

    Hi gurus, i have created a new structure in fresh new sap server for payroll. after completing configration. when i hire an employee system , it gives an error on info 8. It did not pick the value from t510 table. please response it is urgent. Nawaz

  • Google not working

    I ran into a curious problem trying to use Google search. Found a solution. But not certain what caused the problem. When I tried to refine a search (modify text in their search text box) the browser would not refresh on hitting return or their searc

  • Non iTunes downloaded songs not updating metadata in iTunes Match?

    When I download a song to my computer and upload it to iTunes Match and set all the info it is not being reflected on my IOS devices.  There are other songs with the same metadata but the new stuff won't fall in line. What am I found wrong? Please he