How often do i need to Rebuild Mail to get search to work

i seem to be not getting correct results on some searches and when i click on an email from someone i /don't/ see the other emails highlighted from this person listed but if i click on /another/ email with this person's same address i /do/ see a /third/ email highlighted in green.
is this simply a case of needing to run a REBUILD or are there other factors at work here?
also, does the search dialog in the top right hand corner work the way you would imagine it should? i sometimes don't see results that i think i should.
i have multiple email boxes (about 13) all listed under "Inbox".
TIA

> In "connect by level <= 3000000", this is where I specify the number of records to be
inserted into the database, right?
Yes. Caveat - I have not looked at the execution plan of this SQL to see what (if any) the performance and overheads are. I usually only use it for generating 1000's of rows for testing purposes. Not millions. But it seems to work fine with the 3 million limit I used. It should work with 37 million.. touch wood.
> Another question, if I want to insert random string but with specify constraint, is that possible in SQL?
Yes - you can use the CASE statement in SQL. The CASE statement is described in the Oracle® Database SQL Reference guide.
Obviously using a CASE statement will have a performance impact of sorts - but it will still be faster than using a PL/SQL function to do it.
> how about BLOBs?
That depends on what are you planning to put into the LOB. If each row has to contain a random BLOB, then you may need to resort to a PL/SQL function that can return a randomly generated BLOB of a random length.
If the BLOB can be fixed, you can do it with a bind variable - as a CLOB. Define a PL/SQL procedure (or function) that returns a CLOB of the size that you need. Let's call this procedure CreateClob.
In SQL*Plus you define a CLOB bind variable:
SQL> var b CLOB
Then you call this proc and assign the resulting CLOB that it creates to the bind variable:
SQL> exec CreateClob( :b )
Now you can use the CLOB bind variable in the SQL statement. E.g.
SQL> insert into foo( clob_col ) values( :b );
Consult the Oracle® Database PL/SQL Packages and Types Reference guide for details on the DBMS_LOB package.
Both documents contains all the details and includes examples - and are references that I still use almost daily when dealing with Oracle. Copies of Oracle docs are available at http://tahiti.oracle.com

Similar Messages

  • How can I set up my apple mail to get mail from my exchange account?

    My work recently changed the security on the Outlook Exchange server. I used to be able to get my Exchange email on my iPhone and in Apple Mail, but now it only works on my iPhone. I don't understand how to get my Apple Mail to receive the emails? I contacted tech support at work and they said that they don't support Apple Mail they only support iPhone. I have the settings for my iPhone that work but I don't understand why they don't work in Apple Mail. Any ideas?

    Thanks - I did not realize that Homesharing can be specifically set to a photo destination like that!
    So, it would appear that I can either point it to iPhoto (and folders/ events within that) OR the default Pictures folder and subfolders of that OR any other specific folder (and subfolders of that) of my choice.  However, I cannot select BOTH the default Pictures folder (and some subfolder of that) AND a folder in iPhoto AND/ OR an event/ folder in iPhoto.  Is that a correct assumption?
    If so, the only way I see getting homesharing to get both set of pictures is to get all my picture folders (internal and external drive based) into iPhoto (without physically duplicating them) - and then pointing Homesharing to iPhoto, right?
    I think you have solved my issue - but I just want to be sure of that.
    Thanks a ton!

  • How is it possible to install falsh player and get ti to work in exployer

    PLEASE, PLEASE HELP ME.I am an old man and have been going round and round like a dog chasing his tail. I have tried several times to install adobe player and it will never stay installed. Is there please some way an old man, with so very little experience, can make sense of what you are saying. How do I install the player and get it to work the first time I need the player while using explorer 11, I have windows 7 home premium 64 ..AVG virus and tune up program. Please respond to my email address if at all possible. I rarely ever use face book. [email addresses removed]

    Two things to check:
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968
    P.S. this is a public forum; please do not post your email address or other private data!

  • In one on one I was shown how to do screenshots w/ com 4 can't get it to work now

    I was shown in one on one how to do imovie screen shots using com 4. Now I can't get it to work.
    What am I doing wrong? Thanks

    You can also remap the command to a single key:
    System Preferences, Keyboard, Shortcuts, Screenshots, select one of the options (like save picture of selected area), to an unused Fkey (I use F13 on my wired keyboard).  1 key screenshot.

  • How often do I need to create a connection to DB ?

    Hello all, I am developing a site and my "Statement statement" line is bringing up an error when the program runs. My index.jsp contains a form for a username and password, it also has a <%@ include file="DBconn.jsp" %> statement for the connection to the DB
    DBconn.jsp contains:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:etc etc
    I know I am getting connected because the above code displays a "connection established" message with a slight addition to the coding.
    The next JSP to load (Login.jsp) takes the username and password variable from the index.jsp form and tries to authenticate the user details with what is in the database. The next line in Login.jsp is causing a problem:
    Statement statement = conn.createStatement();
    I get an error that "conn cannot be resolved".
    Is that because the object conn was created in the DBconn file and is not accessible from Login.jsp ?? Is it a scope issue ?
    All subsequent pages will be accessing the database, what is the best structure of a jsp to retrieve and write data, I mean, do I have to connect to the database from scratch, run my query then disconnect from the database for every database action that I run ??
    Thanks
    Kevin

    Hello all, I am developing a site and my "Statement
    statement" line is bringing up an error when the
    program runs. My index.jsp contains a form for a
    username and password, it also has a <%@ include
    file="DBconn.jsp" %> statement for the connection to
    the DBI would not recommend any of this.
    If you absolutely must write SQL code in a JSP, please do yourself a favor and learn JSTL and its <sql> tags. There is no reason God's green earth for you to write scriplet code like this.
    The real solution is to move that code out of JSPs and into Java objects that run on the server side.
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection conn =
    riverManager.getConnection("jdbc:oracle:thin:etc etc
    I know I am getting connected because the above code
    displays a "connection established" message with a
    slight addition to the coding.
    The next JSP to load (Login.jsp) takes the username
    and password variable from the index.jsp form and
    tries to authenticate the user details with what is
    in the database. The next line in Login.jsp is
    causing a problem:
    Statement statement = conn.createStatement();Where's that connection coming from? The previous page? The second page has no knowledge at all about the first page. (That's how HTTP works.) If you need to make an object available to another page, you have to add it as an attribute at request/session/application scope.
    Is that because the object conn was created in the
    DBconn file and is not accessible from Login.jsp ??
    Is it a scope issue ?Yes and yes.
    All subsequent pages will be accessing the database,
    what is the best structure of a jsp to retrieve and
    write data, I mean, do I have to connect to the
    database from scratch, run my query then disconnect
    from the database for every database action that I
    run ??Yes. You'll get higher throughput that way. And it shouldn't be done in JSPs.
    Now you'll have another legitimate concern: The expense of opening and closing those connections. The proper thing to do is NOT to get a Connection from the DriverManager. Set up a connection pool and do a JNDI lookup to get it.
    %

  • If I buy a 12 month subscription how often do I need to be connected to the internet?

    I've read conflicting reports.
    99 days?
    180 days?
    Do I need to check in every 30 days?
    If I'm off the grid when I'm prompted to renew my licence will I loose my apps?
    I've been searching the net for hours looking for a clear answer.
    Adobe's own FAQ says:
    An Internet connection is required the first time you install and license your apps, but you can use the apps in offline mode with a valid software license. The desktop apps will attempt to validate your software licenses every 30 days.
    Annual members can use the apps for up to 99 days in offline mode. Month-to-month members can use the software for up to 30 days in offline mode.
    which strikes me as somewhat ambiguous. If I'm off line for 99 days and Adobe continually tries to contact me to validate my apps and can't will my apps still work?
    Thanks so much for any clarity re this.

    kimcats wrote:
    so what happens if you don't connect every 30 days with a monthly subscription?
    Same as described above by kglad on day 100 with the annual membership.
    kimcats wrote:
    is that why my programs have DRASTICALLY become so slow to open or do anything!?
    Unlikely to be related. That sounds like a separate issue. Licensing checks don't affect software performance. If you're financially up to date the software works. If not then it does not.
    kimcats wrote:
    and what exactly do i need to do every 30 days online? connect how?
    Nothing special. Just connect to the internet.
    The licensing mechanism built into the software will do what it needs to do automatically and silently In a few seconds while you work.

  • How to get search to work on app store of iphone5

    My iPhone 5 is  iOS 8,1.3 (12B466) updated and  13 GB available of 27.3 GB capacity.
    When I open app store ,there are 5 icons showing 5 functions.
    Among them, only "update" can work normally.
    The rest (including 'featured', 'top charts', 'explore' and 'search') can not work at all.

    Hi Kurt,
    If you are having issues with your iPhone's App Store search function as well as several others, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    Force an app to close in iOS
    Next, I would try restarting and if needed resetting the iPhone -
    Restart or reset your iPhone, iPad, or iPod touch
    If the issue is still present, you may want to restore the iPhone as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • How to use  Javascript for anchors as I cant get it to work at all?

    I am currently trying to build my own web site using iweb 08. I am a total newby so this question is for anyone who knows about javascript, particularly Cyclosaurus. I have tried in vain to use Cyclosaurus's javascript for anchors in my FAQ's page via html snippet. I must be doing something wrong, so can you help?
    1). I copied and pasted the javascript anchors code into a html snippet
    2). I changed the, anchors.push(3146) to no's 1, 2 and so on for each question
    3). I then changed 'change this to your page' to faq's
    4). I don't understand anything else from this point so please can you help to rectify my total incompetence and explain it in detail.
    This is what i have tried to do.... anchors.push(1);//faq's. followed by my question? y position
    Is this correct or have I gone totally wrong
    Please help
    Many Thanks

    I have finally published my site and yes Cyclosaurus anchors javascript worked great. It won't work when you are working on your site pages, not until you publish your site.
    Follow Cyclosaurus instructions above, it was after where I got stuck. So this is for the many people who need very clear instructions from start to finish. Otherwise you can spend countless hours scrolling through these forums. Here is what you have to do next:
    Each question must be numbered. So your first question would be numbered "1" and so on. Highlight your question at the top of your page. Open inspector and go into hyperlink
    Tick enable hyperlink box and select link to an external page. Delete everything but http:// and type in #1
    Repeat this for each question - next question would be #2 and so on
    Remember to hyper link all your "back to top" or "Top" as #0
    That's it, your good to go to go
    Thanks again to everyone

  • How can I get search to work again in Bridge?

    Stopped working for me about a week ago, just brings up nothing even though I KNOW the file is there.
    I'm on a Mac using Bridge CC with the latest update.

    To re-create the preferences files for Photoshop or Bridge, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by manually deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here:
    How to Reset Photoshop CS6’s Preferences File | The Complete Picture with Julieanne Kost | Adobe TV
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • HT1782 How do I clean up my MacPro disk ang get the laptop working faster?

    How do I clean up my Mac Pro disk and get it working faster?

    garfieldfromgbr wrote:
    How do I clean up my Mac ...
    Mac OS X tends to look after itself...  3rd Party Cleaning Utilities tend to cause More Issues than they claim to fix... They are Not Required...
    garfieldfromgbr wrote:
    ... get it working faster?
    See here >  Thomas A Reed  >  http://www.thesafemac.com/mpg/

  • Always need to reboot Mac to get flash to work.

    Every time I want to use Adobe FLash player, it crashes upon start and I have to reboot my Mac.  I tried upgrading from leopard to Snow Leopard and the problem is still the same. I am using the latest version of Adobe Flash Player.
    It doesn't matter if I am using Safari, Firefox, or Google Chrome, Flash crashes in all of them.
    I tried uninstalling, reinstalling, tried the debugger file and STILL......it crashes.   I just recently realized that a complete shutdown and restart of my
    Mac will get Flash Player working. 
    A side note:  I also experience this same thing whenever I want to use the scanner portion of my Canon Pixma printer/scanner.  There too, I have to shutdown and restart the computer.  Not sure the two are related or merely a coincidence.
    Apparently there is perhaps a conflict with Flash Player and some other software my computer uses?

    Thanks, but I have been to that site, tried all that, and I continue to have the problem.
    I don't think it's necessarily teh Flash Player install, but I must have something else running on my
    Mac that conflicts with it.  Immediately after a fresh boot, it's okay, but something creates a conflict
    eventually.  It could be my printer driver?  It could be Itunes?  Not sure.

  • How often does mozilla check for mail?

    I simply want to know how often Mozilla Thunderbird checks for new mail. Can I change this time period to more or less often?

    As often as you tell it to check. Note, some email providers limit the frequency with which one is allowed to check for new mail. An interval of less than 10 min doesn't really make sense.
    Tools (Alt-T) - Account Settings - Server Settings
    Check for new messages every x minutes.

  • How do often do I need to recertify with Comcast to access WatchESPN?

    I'm hoping to use Apple TV to replace my cable provider (Comcast). However, some of my "must have" programing requires having an active TV subscription with the content. For example, to get my sports via WatchESPN on Apple TV I have to have a Cable provider that certifies me to access that content. I've done the certification on Apple TV via Comcast and can currently access WatchESPN. However, if I cancelled Comcast would it immediately know that and "decertify" me. Likewise, how often would I need to re-certify? My concern is that I'll need to recertify after cancelling and be unable to access Watch ESPN.
    Thanks!

    How long would it take for you to lose that programming? Hard to say, and would likely vary in different situations, but yes, ultimately you will lose it sometime after your Comcast account is deactivated. I would guess sooner than later.

  • HT1414 How often do need to update my iphone4's software

    How often do i need to update the software of my iPhone 4
    And what is the latest software for iPhone 4

    When there is an update available.
    The current iOS version is 5.1.1.

  • How often to repair permissions?

    How often should one need to repair permissions?
    It seems that I need to do so too frequently in order to repair sluggish or erratic performance.
    Adam

    Permissions shouldn't have to be repaired unless there is a permissions problem. Are you getting permissions messages when you open files/apps?
    Slow, erratic behavior doesn't sound like a permissions problem. I'm not sure why RP is helping this.
    How much RAM do you have installed?
    How often and after how long does this happen?
    Please post your Console > system.log from around the time of the last slowdown/permissions repair. Maybe we can find something there. Depending on how often this happens, you may be able to test it bystarting up in Safe Mode  (It will take more time to startup because it runs a directory check.)
    If your system functions correctly that way, go to System Preferences >> Accounts >> Login Items and remove them. Boot normally and test. If not go to/Users/yourname/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving/Users/yourname/Library/Fonts to your desktop.

Maybe you are looking for