What's supposed to happen to SharePoint when the IIS blob cache is full?

Can someone possibly point me at a description of what's supposed to happen to SharePoint if the IIS blob cache directory fills up?
I've seen postings from MS saying that you need to keep the directory 20% bigger than the amount of files you might end up storing in there, but that's clearly not the whole answer.
I ask because we've had a problem today on SP2010 with files disappearing from people's sites as soon as they are uploaded, or being replaced with files of 0 bytes.   It seems to be caused by the blob cache directory being full, and SharePoint not making
any attempt to free up space in it.
Rob Schifreen SharePoint 2010 Admin University of Brighton, UK

For me, on Mac, the second (or more) time I open an image from Bridge or from Photoshop's Recent menu, it opens the image in ACR (7.2) a second time and appends a -2 to the file name once opened in Photoshop. Each time the image is opened up again, it adds an appended -x number. I'm pretty sure this is the expected behavior...

Similar Messages

  • What is supposed to happen when a tethered Blackberry Tour receives an incoming call?

    I have a blackberry tour on an enterprise system.  Can anyone tell me what is supposed to happen when tethered and an incoming call comes in to the phone?  My company will soon be getting rid of our aircards, and activating the tethering feature on the blackberrys.  We use VPN to connect to the intranet.  Also, can I make an outgoing phone call without disconnecting from the internet?
    Thanks,
    Alex

    Hi Gruntz, 
    When you are using the tethering feature on your Blackberry device, the in coming call could interfere with your data connection. Also, when you make an outbound call, it would disconnect from your internet tethering feature. This is because the device would not be able to make and receive calls as its connected to the internet. 

  • What is supposed to happen if the font for a control on the startup form does not exist on the system?

    Say you put a button on a form and dont change the font ie ms san serif, then the app is installed on a system that does not have the font ms san serif installed. Is it supposed to throw an error when the form initializes? Since this happens before any user
    code the error can go untrapped in the start up form and crashes to the system.
    I discovered it does this if you specify the font in the designer to be "Arial Narrow" and it is not installed. But whats funny is the error is not font does not exist, it is "Arial Narrow" does not support style Regular. Even though
    I set the font in the IDE for the control. How can I be setting it with the IDE to something that does not exist for the font I set (Arial Narrow is on the IDE system)?
    I have always thought that vb would just use a different font if the control font did not exist without an error. In my case it was a secondary form so the error was trapped. But, I don't see how to trap the error if it is the startup form.

    PS
    "I meant that you should set the buttons font to something like
    MS Sans Serif "
    What if ms sans is not on the system? Then you cant do anything.
    Maybe I am being picky but just sayin...
    I don't suppose you're being picky specifically although I think I got a headache attempting to do the below.
    I do think this is a bug though which you should probably report.
    However I tried this and it worked fine. Except I had to alter the Form1.Designer.vb file to do this. I tested this. I didn't test without this to see if I would get the exception you received.
    I downloaded a Font called Kingsthings Christmas from the second link in my post for links to download fonts. Added that to my systems Fonts and tested the code. Removed that from my systems fonts and tested the code. It worked in both instances.
    I suspect that the Font in the Form1.Designer.VB file for the New Font for the TabControl and TreeView would work with the default system font set to use 21.75! and font style regular but if the default system font didn't support both of those then an issue
    could occur obviously. So if somebody used Control Panel to set the default system font to something that doesn't support those two things then you will need to alter the code to detect what the default system font can use for those two settings
    possibly.
    Form1's code
    Option Strict On
    Imports System.Drawing.Text
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    TreeView1.BeginUpdate()
    TreeView1.Nodes.Add("Parent")
    TreeView1.Nodes(0).Nodes.Add("Child 1")
    TreeView1.Nodes(0).Nodes.Add("Child 2")
    TreeView1.Nodes(0).Nodes(1).Nodes.Add("Grandchild")
    TreeView1.Nodes(0).Nodes(1).Nodes(0).Nodes.Add("Great Grandchild")
    TreeView1.EndUpdate()
    For Each f As FontFamily In New InstalledFontCollection().Families
    RichTextBox1.AppendText(f.Name.ToString & vbCrLf)
    Next
    End Sub
    End Class
    Form1.Designer.VB files code which you're not supposed to alter of course.
    Option Strict On
    Imports System.Drawing.Text
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Class Form1
    Inherits System.Windows.Forms.Form
    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
    Try
    If disposing AndAlso components IsNot Nothing Then
    components.Dispose()
    End If
    Finally
    MyBase.Dispose(disposing)
    End Try
    End Sub
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.
    'Do not modify it using the code editor.
    Dim FontToUse As Font
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
    For Each f As FontFamily In New InstalledFontCollection().Families
    If f.Name.ToString = "Kingthings Christmas 2" Then
    FontToUse = New Font(f.Name.ToString, 24)
    Exit For
    Else
    FontToUse = New Font(SystemFonts.DefaultFont.FontFamily.Name.ToString, 24)
    End If
    Next
    Me.TabControl1 = New System.Windows.Forms.TabControl()
    Me.TabPage1 = New System.Windows.Forms.TabPage()
    Me.TabPage2 = New System.Windows.Forms.TabPage()
    Me.TabPage3 = New System.Windows.Forms.TabPage()
    Me.TabPage4 = New System.Windows.Forms.TabPage()
    Me.TabPage5 = New System.Windows.Forms.TabPage()
    Me.TreeView1 = New System.Windows.Forms.TreeView()
    Me.RichTextBox1 = New System.Windows.Forms.RichTextBox()
    Me.TabControl1.SuspendLayout()
    Me.SuspendLayout()
    'TabControl1
    Me.TabControl1.Controls.Add(Me.TabPage1)
    Me.TabControl1.Controls.Add(Me.TabPage2)
    Me.TabControl1.Controls.Add(Me.TabPage3)
    Me.TabControl1.Controls.Add(Me.TabPage4)
    Me.TabControl1.Controls.Add(Me.TabPage5)
    Me.TabControl1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TabControl1.Location = New System.Drawing.Point(6, 32)
    Me.TabControl1.Name = "TabControl1"
    Me.TabControl1.SelectedIndex = 0
    Me.TabControl1.Size = New System.Drawing.Size(600, 183)
    Me.TabControl1.TabIndex = 0
    'TabPage1
    Me.TabPage1.Location = New System.Drawing.Point(4, 43)
    Me.TabPage1.Name = "TabPage1"
    Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage1.Size = New System.Drawing.Size(592, 136)
    Me.TabPage1.TabIndex = 0
    Me.TabPage1.Text = "TabPage1"
    Me.TabPage1.UseVisualStyleBackColor = True
    'TabPage2
    Me.TabPage2.Location = New System.Drawing.Point(4, 43)
    Me.TabPage2.Name = "TabPage2"
    Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage2.Size = New System.Drawing.Size(592, 136)
    Me.TabPage2.TabIndex = 1
    Me.TabPage2.Text = "TabPage2"
    Me.TabPage2.UseVisualStyleBackColor = True
    'TabPage3
    Me.TabPage3.Location = New System.Drawing.Point(4, 43)
    Me.TabPage3.Name = "TabPage3"
    Me.TabPage3.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage3.Size = New System.Drawing.Size(592, 136)
    Me.TabPage3.TabIndex = 2
    Me.TabPage3.Text = "TabPage3"
    Me.TabPage3.UseVisualStyleBackColor = True
    'TabPage4
    Me.TabPage4.Location = New System.Drawing.Point(4, 43)
    Me.TabPage4.Name = "TabPage4"
    Me.TabPage4.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage4.Size = New System.Drawing.Size(592, 136)
    Me.TabPage4.TabIndex = 3
    Me.TabPage4.Text = "TabPage4"
    Me.TabPage4.UseVisualStyleBackColor = True
    'TabPage5
    Me.TabPage5.Location = New System.Drawing.Point(4, 43)
    Me.TabPage5.Name = "TabPage5"
    Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage5.Size = New System.Drawing.Size(592, 136)
    Me.TabPage5.TabIndex = 4
    Me.TabPage5.Text = "TabPage5"
    Me.TabPage5.UseVisualStyleBackColor = True
    'TreeView1
    Me.TreeView1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TreeView1.Location = New System.Drawing.Point(9, 229)
    Me.TreeView1.Name = "TreeView1"
    Me.TreeView1.Size = New System.Drawing.Size(704, 235)
    Me.TreeView1.TabIndex = 1
    'RichTextBox1
    Me.RichTextBox1.Location = New System.Drawing.Point(9, 475)
    Me.RichTextBox1.Name = "RichTextBox1"
    Me.RichTextBox1.Size = New System.Drawing.Size(702, 124)
    Me.RichTextBox1.TabIndex = 2
    Me.RichTextBox1.Text = ""
    'Form1
    Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
    Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
    Me.ClientSize = New System.Drawing.Size(720, 606)
    Me.Controls.Add(Me.RichTextBox1)
    Me.Controls.Add(Me.TreeView1)
    Me.Controls.Add(Me.TabControl1)
    Me.Name = "Form1"
    Me.Text = "Form1"
    Me.TabControl1.ResumeLayout(False)
    Me.ResumeLayout(False)
    End Sub
    Friend WithEvents TabControl1 As System.Windows.Forms.TabControl
    Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage4 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage5 As System.Windows.Forms.TabPage
    Friend WithEvents TreeView1 As System.Windows.Forms.TreeView
    Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox
    End Class
    La vida loca

  • I have both the 250 gb high performance hard drive and a 1 ter byte hard drive.  What happens when the 250 gb hardrive is full?

    I have both the 250 gb high performance hard drive and a 1 ter byte hard drive.  What happens when the 250 gb hardrive is full? This on Imac desktop

    Never let a drive get more than 80% to 85% full.
    AND keep 50-100 GB of free space on a startup drive to allow proper function of virtual memory in all OS X versions from 10.5x to current versions.
    10.4x can get by with 20 GB of free space on the boot drive, but more is always better.
    I try and keep all boot drives between 50 and 60% of capacity.
    Beyond 60% and up to 90% capacity, seek times increase almost exponentially; performance suffers.

  • What happens when the Time Machine drive is full?

    I'm on my second iMac. My first one (G5, 1984) died, and I replaced it early 2010 with an Intel mac. The transition when exceedingly well largely due to Time Machine. I just hooked the Time Machine drive to the new system, and I was soon back up running!
    My home folder has 70GB of data. The Macintosh drive has 105GB of data and 395GB free. The Time Machine drive has 220GB used and 30GB free.
    1. What happens when the Time Machine drive is full?
    2. Do I have control over what backups get deleted?
    3. If lightning strikes twice, will I still be able to restore my Intel mac like my G5 mac, even if backups get deleted?
    4. Is there anyway to control what backups/backup files get deleted?
    5. Any other thoughts?
    Thanks.

    maxseven wrote:
    i have deleted the time machine folders and they are now in my trash. when i try to secure empty my trash it will delete everything but the t/m folders. how do i delete them?
    Do you mean all of them? The entire Backups.backupdb folder?
    That's a large mess. First, even a normal delete will take a very long time, as there are probably hundreds of thousands, or even millions, of files. Your best bet by far is to simply erase them with Disk Utility -- that will only take a few moments. If your TM drive has a single partition, see #1 in [Formatting, Partitioning, Verifying, and Repairing Disks|http://web.me.com/pondini/AppleTips/DU.html]. If there are other partition(s) on the drive, see #2 there.
    If not, and you only deleted some of the folders, you have a different, worse problem. Unfortunately, Apple doesn't do a very good job of warning folks: +*Never move, change, or delete anything in your backups via the Finder or Terminal.+*
    You shouldn't have to delete backups at all, since Time Machine will do that automatically when the disk/partition gets full. But you can do it without harm via Time Machine. See #12 in [Time Machine - Frequently Asked Questions|http://web.me.com/pondini/Time_Machine/FAQ.html] (or use the link in *User Tips* at the top of this forum).
    A normal delete will take a very long time, as there are probably tens or hundreds of thousands of items, each of which must be individually deleted. A secure delete will take much, much longer, as each deleted file must be overwritten with zeros.

  • What is SUPPOSED to happen to accepted invitations

    I sent some invitations from iCal and got an email from one person accepting that invitation. What is supposed to happen to that? Am I supposed to be able to view the invitation in iCal and see that the person has accepted the invitation? That didn't happen ... or at least I can't see anything in iCal to that effect. I do get the email telling me that they have accepted the invitation. I looked at the notifications window but there is nothing there.

    You have asked a super question. I, too, have no idea what receiving an iCal evite confirmation is supposed to do. I look to the event, and see that the invited person still has a question mark next to their name. Also, the evite doesn't get sent automatically, I have to open the appointment manually, and then click on the send button. iCal is an interesting program in that it doesn't do what one would expect the program to do automatically... automatically.

  • What do I do with my laptop when the shutdown keeps popping on the screen?

    What do I do with my laptop when the shutdown keeps popping on the screen?

    Intel-based Macs: Resetting the System Management Controller (SMC)

  • What type of Data target is used when the safety interval is used?

    Hi ,
    what type of Data target is used when the safety interval is used in generic delta in datasource?DSO or cube  or cube?
    Pls explain me ?
    Thanks,
    Nimai

    It's up to your reporting requirement to go for dso or cube..
    I prefer to having staging with DSO and then further reporting on Cube ..
    It's always easier to manage when you have any changes to the cube .. you need not to extract data from R/3 .. if you have dso you can extract directly to cube
    Another thing is -for any reason some of your records got corrupted so you can have full loads to dso which has the overwrite functionality...  and sends delta records to cube. even in cube you can do selective deletion but we have to very careful to avoid double records in next loads
    Edited by: Srinivas on Jul 29, 2010 8:23 PM

  • What does it mean on an ipad2 when the lock icon beside the signal strength comes on and off?

    What does it mean on an ipad2 when the lock icon beside the signal strength comes on and off, and an intermittant lock appears on the left beside the SSID name?
    I am trying to connect to a Cisco network, and even though the SSID is open authentication the ipad will either say it cannot connect or ask for the password.

    That's a "resize" arrow. Try relaunching Finder (Cmd+Opt+Esc) or >Force Quit

  • What is going to happen to iWeb in the log run

    What is going to happen to iweb in the long run?

    artworks349 wrote:
    So what happen to frontrow?
    See HERE.
    artworks349 wrote:
    Whats a good web builder thats a esay to us as iweb had a look at sandvox
    Consider the free Weebly — it's a browser-based builder, so you'll be able to update your site from any modern Mac or PC. And Weebly's net promoter score — an industry calculation of how likely users are to recommend a service to others — is an unusually high 80%. (Source)

  • Approach when the used Live cache data area crosses the threshold

    Hi,
    Could any of you please let me know the detailed approach when the used Live cache data area crosses the threshold in APO system?
    The approach I have as of now is :
    1) When it is identified that data cache usage is nearly 100%, check for hit rate for OMS data in data cache in LC10 .Because generally hit rate for OMS data in data cache should be atleaset 99.8% and Data Cache usage should be well below 100%.
    2) To monitor unsuccessful accesses to data cache choose refresh and compare value now and before unsuccessful accesses result in physical disk I/O and should generally be avoided.
    3) The number of OMS data pages (OMS Data) should be much higher than the number of OMS history pages (History/Undo).A ratio of 4:1 is desirable. If OMS history has nearly the same size as OMS data, use Problem AnalysisPerformanceOMS versions to find out if named consistent views (Versions) are open for a long time. Maximum age should be 8hrs.
    4)If consumption of OMS heap and data cache is large, one reason may be a long running transaction simulation that accumulates heap memory and prevents the garbage collector from releasing old object images.
    5) To display existing transactional simulations in LC10,use Problem AnalysisPerformanceOMS versions and SM04 to find out user of corresponding transaction and may be required to cancel the session after contacting user if the version open for long time..
    Please help me by providing additional information on the issue.
    Thanks,
    Varada Reddy.

    Hi Mayank, sorry, one basic question - are you using some selection criteria during extraction? If yes, then try extraction without the selection criteria.
    If you maintain selection based on, let's say, material, you need to use the right number of zeros as prefix (based on how you have defined the characteristic for material) otherwise no records would be selected.
    Is this relevant in your case?
    One more option is to try to repair teh datasource. In the planning area, go to extraction tools, select the datasource, and then choose the option of repair datasource.
    If you need more info, pls let me know.
    - Pawan

  • Detailed approach when the used Live cache data area crosses the threshold

    Hi,
    Could any of you please let me know the detailed approach when the used Live cache data area crosses the threshold in APO system?
    The approach I have as of now is :
    1) When it is identified that data cache usage is nearly 100%, check for hit rate for OMS data in data cache in LC10 .Because generally hit rate for OMS data in data cache should be atleaset 99.8% and Data Cache usage should be well below 100%.
    2) To monitor unsuccessful accesses to data cache choose refresh and compare value now and before unsuccessful accesses result in physical disk I/O and should generally be avoided.
    3) The number of OMS data pages (OMS Data) should be much higher than the number of OMS history pages (History/Undo).A ratio of 4:1 is desirable. If OMS history has nearly the same size as OMS data, use Problem AnalysisPerformanceOMS versions to find out if named consistent views (Versions) are open for a long time. Maximum age should be 8hrs.
    4)If consumption of OMS heap and data cache is large, one reason may be a long running transaction simulation that accumulates heap memory and prevents the garbage collector from releasing old object images.
    5) To display existing transactional simulations in LC10,use Problem AnalysisPerformanceOMS versions and SM04 to find out user of corresponding transaction and may be required to cancel the session after contacting user if the version open for long time..
    Please help me by providing additional information on the issue.
    Thanks,
    Varada Reddy.

    Hi Mayank, sorry, one basic question - are you using some selection criteria during extraction? If yes, then try extraction without the selection criteria.
    If you maintain selection based on, let's say, material, you need to use the right number of zeros as prefix (based on how you have defined the characteristic for material) otherwise no records would be selected.
    Is this relevant in your case?
    One more option is to try to repair teh datasource. In the planning area, go to extraction tools, select the datasource, and then choose the option of repair datasource.
    If you need more info, pls let me know.
    - Pawan

  • Setting up new user home dir -- what is *supposed* to happen"

    Folks:
    Could someone tell me what Workgroup Mgr is supposed to do when you tell it to set up new home dir?
    Right now it creates the dir, but sets the perms to drwxr-xr-x, owner root, and it's empty.
    This means the new user can't do anything with the dir, and I'm fairly certain Wkg Mgr is supposed to have put some files in there?
    Any clues appreciated,
    Graham

    I've been having some trouble with creating home directories on my server, and others are no doubt more expert in this field than I am, but what should be created are the Documents, Movies, Music, Pictures, Public, and Sites directories that you expect to see. If you create those (or whatever subset you want) and set the ownership of the directory to the correct user, Library and Desktop will be automatically created when they log in.
    In my case, for a while now "Create Home Now" hasn't been working and the home directory is not automatically created when the user logs in. If I set it up manually everything works out, but I'd like to know why this is happening. I can't figure out what's wrong with the share point if that's the problem.

  • What happens to PR when the related PO is cancelled

    Hi guys
    What happens to the Purchase Requisition (PR) when the related Purchase ORder is cancelled..........!!
    What is the process..
    Regards
    Sreee

    If you check the box 'cancel requisition' when you cancel the PO, the req is cancelled, else the req is not cancelled and should become available again in the autocreate pool.

  • What happens to iMessages when the recipient's phone is off? ...

    What happens to messages sent via iMessage or as text messages if the recipient's phone is off? Are they queued and resent when the phone is turned on? Or do they end up in the bit bucket?
    Thanks!
    Chris

    If the recipient is activated his imessage and if he turns on the cellular data or wifi your imessages will get delivered whenever switched on the wifi network or 3g

Maybe you are looking for

  • "unknown error" message when trying to download apps on my iPod touch

    Today Ive been trying to download multiple apps but keep receiving an "unknown error" message I've tried restarting my iPod but that didn't help

  • Fonts in Mac Mail

    I can't get mac mail to retain my selected font settings in new messages I compose. I can select font settings while composing a message but it reverts to the default settings for any subsequent emails.

  • Problem in Compilation of a c++ code due to usage of regexec in Solaris.

    HI all, I am using regexec as "err=regexec(&regexBuffer, m_data, maxMatches, regexMatches, eFlags)" i am having a problem running this code in Solaris although i works fine in windows. When i try to display indivial values of the structure regexec, i

  • Email submit not workign in Quiz?

    I have created a simple quiz in Captivate 3. When I preview the project in Captivate, it works correctly and the submit results button launches my mail and dumps in the quiz results like it is suppose to. BUT... When I publish the quiz, save as a .sw

  • Module pool ---Problem in finding the line index for the table control

    Hi Friends, I am working in Module pool programming. My requirement is when i select any record on the lead selection I need to find out the index of the line on which  row i have selected. Could any one please suggest me the proper solution how to g