Different used space for CSV in cluster manager / explorer

Hi everyone,
in our Hyper-V Cluster consisting of two 2012 Servers we have got the following problem:
The used disk space in windows Explorer is roughly 1TB less than the used disk space which is shown in the Failover Cluster Manager. In other words: The CSV is nearly full and I don't know why.
Diskpart, failovercluster Manager and every disk tool I tried is showing 6TB as disk size and although Explorer is showing only 5TB data the cluster is showing only 100GB free.
any help?
thanks,
Michael

Hi,
Did you used the dedup with your CSV?
Thanks.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Monitoring Used (%) space for tablespaces

    Hi everyone,
    I am currently using:
    Redhat Linux ES 5 2.6.18 and also
    Oracle 10g Release 2 for Linux x86 R10.2.0.3
    While monitoring my Tablespaces using OEM Database Control, I notice that two tablespaces were almost full.
    [SYSAUX] - Size: 290MB , Used 283MB (97% full)
    [SYSTEM] - Size: 320MB, Used 313MB (98% full)
    When I try to locate the datafiles of both tablespaces in its directory (/home/dba/oracle/oradata/oracle), it shows the allocated size (290MB for sysaux01.dbf & 320MB for system01.dbf) and not the used space.
    I got three questions to ask over here:
    1st- Why there isn't any warnings or alarms even though the tablespaces exceeds the critical size?
    2nd- How come the datafiles shows the allocated size of the tablespaces and not the Used space?]
    3rd- How can I find & monitor the actual used space of the tablespaces?
    4th- I have enabled the AutoExtend function but I am worry whether is there any other concern?
    I am still very new here.
    Please pardon me for anything that is improper.
    Looking forward for your expertise, guidance & help.
    Thanks for your attention.
    -Regards-
    ++ Kef Lim ++

    Hi,
    Here you have some scripts:
    TABLESPACE USAGE NOTES:
    Tablespace Name - Name of the tablespace
    Bytes Used - Size of the file in bytes
    Bytes Free - Size of free space in bytes
    Largest - Largest free space in bytes
    Percent Used - Percentage of tablespace that is being used - Careful if it is more than 85%
    select     a.TABLESPACE_NAME,
         a.BYTES bytes_used,
         b.BYTES bytes_free,
         b.largest,
         round(((a.BYTES-b.BYTES)/a.BYTES)*100,2) percent_used
    from      
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES
              from      dba_data_files
              group      by TABLESPACE_NAME
         a,
              select      TABLESPACE_NAME,
                   sum(BYTES) BYTES ,
                   max(BYTES) largest
              from      dba_free_space
              group      by TABLESPACE_NAME
         b
    where      a.TABLESPACE_NAME=b.TABLESPACE_NAME
    order      by ((a.BYTES-b.BYTES)/a.BYTES) desc
    SET SERVEROUTPUT ON
    SET PAGESIZE 1000
    SET LINESIZE 255
    SET FEEDBACK OFF
    PROMPT
    PROMPT Tablespaces nearing 0% free
    PROMPT ***************************
    SELECT a.tablespace_name,
           b.size_kb,
           a.free_kb,
           Trunc((a.free_kb/b.size_kb) * 100) "FREE_%"
    FROM   (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) free_kb
            FROM   dba_free_space
            GROUP BY tablespace_name) a,
           (SELECT tablespace_name,
                   Trunc(Sum(bytes)/1024) size_kb
            FROM   dba_data_files
            GROUP BY tablespace_name) b
    WHERE  a.tablespace_name = b.tablespace_name
    AND    Round((a.free_kb/b.size_kb) * 100,2) < 10
    PROMPT
    SET FEEDBACK ON
    SET PAGESIZE 18
    Set Termout  On
    Set Heading  On
    clear breaks
    break on contents -
    skip 1
    compute Sum of alloc used free nbfrag on contents
    column tblsp         format a20 wrap          heading  "Tablespace Name"
    column Alloc         format 999,999           heading  "Alloc|(Mb)"
    column Free          format 999,999           heading  "Free|(Mb)"
    column used          format 999,999           heading  "Used|(Mb)"
    column pused         format 990.9             heading  "%|Used|Space"
    column fragmax       format 99,999.9          heading  "Largest|Free|Ext.(Mb)"
    column nbfrag        format 99999             heading  "Nb|frag"
    column contents      format a10               heading  "Content"
    column pct_ext_coal  format 999                     heading  "% Ext.|Coal."
    column ext_manage    format a7 wrap           heading  "Ext.|M."
    column autoext       format a7 wrap           heading  "Auto|Ext."
    select
           contents
         , nvl (dt.tablespace_name, nvl (fsp.tablespace_name, 'Unknown')) tblsp
         , alloc
         , alloc - nvl (free, 0)       Used
         , nvl (free, 0)               Free
         , ((alloc - nvl (free, 0)) / alloc) * 100  pused
         , nbfrag
         , fragmax
         , dfsc.pct_ext_coal pct_ext_coal
         , dt.ext_manage
         , df.inc                           autoext
      from
           ( select sum (bytes)/1048576     free
                  , max (bytes)/1048576     fragmax
                  , tablespace_name
                  , count(*)                nbfrag
              from  sys.dba_free_space
             group  by tablespace_name
           ) fsp
        ,  ( select sum(bytes)/1048576      alloc
                  , tablespace_name
                  , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')     inc
               from sys.dba_data_files sddf
                  , sys.filext$        aut
              where sddf.file_id       =  aut.file#   (+)
              group by tablespace_name
                     , Decode(((inc * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
              Union
              select sum(bytes)/1048576      alloc
                   , tablespace_name
                   , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')    inc
                from sys.dba_temp_files sddf
               group by tablespace_name
                      , Decode(((increment_by * &Var_DB_BLOCK_SIZE)/1024), Null, 'No', 'Yes')
           ) df
        ,  ( select contents
                  , tablespace_name
                  , initial_extent/1024     initial_ext
                  , next_extent/1024        next_ext
                  , pct_increase
                  , max_extents
                  , min_extents
                  , Substr(extent_management,1,5)       ext_manage
               from dba_tablespaces
           ) dt
         , ( select percent_extents_coalesced    pct_ext_coal
                  , tablespace_name
               from dba_free_space_coalesced
           ) dfsc
    where
           fsp.tablespace_name  (+)   =   dt.tablespace_name
       and
           df.tablespace_name   (+)   =   dt.tablespace_name
       and
           dfsc.tablespace_name (+)   =   dt.tablespace_name
    order
        by contents
         , pused desc
    ;Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • For Superior Stability and Responsiveness: Use Spaces for Every App as Much as Possible

    Hi. It's great to share this experiement. It's Hard to Crash Mountain Lion OS X with Spaces or even bring out the spinning wheel.
    Any OS (it's good to have Windows, OS X and Linux all at the same time, best of all worlds) should probably be stable if each app was on a separate desktop environment or separate account (with the main one logged in, in the background). The permission were repaired (it crashed the last time I tried this with just one Spaces) using Disk Utility in Mountain Lion's Recovery partition.
    Testing the overall stability and responsiveness: more than 12 app including Cinebench 12, Winclone, 2 3D Games from App Store (not Crysis or Rage but helps stress things along with Cinebench), all default Mountain Lion apps except Time Machine launched in one windows , Winclone cloning BootCamp a Win8 (upgraded from Win7) for hours, playing two 3D games (shooter Uberstrike and Marble World, fulscreen windowed) from App Store, Carbon Copy Cloner, watching a fullscreen movie on VLC, Activity monitor and iStats to see how the temperatures, CPU, GPU and memory are doing), quicktime playing a catholic chant in a loop- anything to bring the Mac, the whole system to a crawl, spinning wheel of death or to a crash which it didn't. Launching and relaunching app on their on Spaces was responsive even with all the system taxed at almost 100%.
    There was around 12 Spaces running at the same time on the iMac i7 with 8GB. It's not the most convenient way to switch between apps (having everying in one Spaces and clicking on it still the best, followed by swithing via Dock), the gestures and mission control significantly made it easier to have so many Spaces and not that much of a burden to manage when you get used to it. It's much better than Windows 8 implementation for a less cluttered environment. The command-tab is good to combine with Mission Control gestures for switching from fullscreen apps.
    .All that while running Cinebench 11.5 which taxes the CPU at almost and GPU 100% but surprisingly the fps shooter and Marble Worlds 3D games didn't crawl as I expected.Having an ambient temperature of about 30 Celsius, with full load the CPU temp was at 66, GPU was at 88, fans where surprisingly at CPU and optical disk fans were only at 900+ rpm with hardisk at 1000+ rpm which is the only 'side effect' to having taxing the system like this (I still have Applecare and Time Machine backup for a worry free test) is it confuses the SMC because without load all fans were at 1000+ rpm (I brough it back to normal with a SMC reset). All these for hours and there's still 1GB memory to use out of the 8GB (with 100GB hardisk space).
    When I closed all 11 Spaces and brought all the apps to just one desktop, it wasn't as stable nor as responsive like I have experienced before. Marble World when you switch to it, would have artifacts, the game was almost a slide show. If you have lots of clips to copy past from on the Desktop and you have to hide all to see the finder and then Show All, Carbon Cloner would not show up right away and would have that spinning wheel. I quitted all the apps to prevent a crash and to bring temperatures down.
    At first the Mountain Lion was almost a regret with some crashes but with Spaces, Misson Control and gestures for Mission Control, It's bring out the value and it just incredibly stable and responsive (Linux have their multiple desktop environment but Apple's implementation makes you see everything like a map almost bringing the convenience of just one desktop with all the apps placed strategically so you can click and switch to it faster). It's a great way to do a lot of things when you need to without worrying about slowing things down to a crawl.
    Thank you for your time.
    God bless.

    Hi. It's great to share this experiement. It's Hard to Crash Mountain Lion OS X with Spaces or even bring out the spinning wheel.
    Any OS (it's good to have Windows, OS X and Linux all at the same time, best of all worlds) should probably be stable if each app was on a separate desktop environment or separate account (with the main one logged in, in the background). The permission were repaired (it crashed the last time I tried this with just one Spaces) using Disk Utility in Mountain Lion's Recovery partition.
    Testing the overall stability and responsiveness: more than 12 app including Cinebench 12, Winclone, 2 3D Games from App Store (not Crysis or Rage but helps stress things along with Cinebench), all default Mountain Lion apps except Time Machine launched in one windows , Winclone cloning BootCamp a Win8 (upgraded from Win7) for hours, playing two 3D games (shooter Uberstrike and Marble World, fulscreen windowed) from App Store, Carbon Copy Cloner, watching a fullscreen movie on VLC, Activity monitor and iStats to see how the temperatures, CPU, GPU and memory are doing), quicktime playing a catholic chant in a loop- anything to bring the Mac, the whole system to a crawl, spinning wheel of death or to a crash which it didn't. Launching and relaunching app on their on Spaces was responsive even with all the system taxed at almost 100%.
    There was around 12 Spaces running at the same time on the iMac i7 with 8GB. It's not the most convenient way to switch between apps (having everying in one Spaces and clicking on it still the best, followed by swithing via Dock), the gestures and mission control significantly made it easier to have so many Spaces and not that much of a burden to manage when you get used to it. It's much better than Windows 8 implementation for a less cluttered environment. The command-tab is good to combine with Mission Control gestures for switching from fullscreen apps.
    .All that while running Cinebench 11.5 which taxes the CPU at almost and GPU 100% but surprisingly the fps shooter and Marble Worlds 3D games didn't crawl as I expected.Having an ambient temperature of about 30 Celsius, with full load the CPU temp was at 66, GPU was at 88, fans where surprisingly at CPU and optical disk fans were only at 900+ rpm with hardisk at 1000+ rpm which is the only 'side effect' to having taxing the system like this (I still have Applecare and Time Machine backup for a worry free test) is it confuses the SMC because without load all fans were at 1000+ rpm (I brough it back to normal with a SMC reset). All these for hours and there's still 1GB memory to use out of the 8GB (with 100GB hardisk space).
    When I closed all 11 Spaces and brought all the apps to just one desktop, it wasn't as stable nor as responsive like I have experienced before. Marble World when you switch to it, would have artifacts, the game was almost a slide show. If you have lots of clips to copy past from on the Desktop and you have to hide all to see the finder and then Show All, Carbon Cloner would not show up right away and would have that spinning wheel. I quitted all the apps to prevent a crash and to bring temperatures down.
    At first the Mountain Lion was almost a regret with some crashes but with Spaces, Misson Control and gestures for Mission Control, It's bring out the value and it just incredibly stable and responsive (Linux have their multiple desktop environment but Apple's implementation makes you see everything like a map almost bringing the convenience of just one desktop with all the apps placed strategically so you can click and switch to it faster). It's a great way to do a lot of things when you need to without worrying about slowing things down to a crawl.
    Thank you for your time.
    God bless.

  • Using Spaces for task separation?

    I was hunting around on the internet to try to find a way to have tasks separated in spaces rather than applications. I came across an article that said with the new 10.5.5 update this should be possible. The article said I just had to uncheck the box for the "When switching to an application..." feature and possibly "restart my doc". I unchecked the box but I have no idea what restarting a doc entails (although I did restart the computer just in case that would solve it), and whenever I drag say one safari window into a different space, all the others follow. So, my first question is: in 10.5.5 is it possible to have an application running in two spaces at once? If so, how do I tell the computer it should let me do this?
    Secondly, I have a monitor hooked into my mac book and the computer seems to resize windows on the secondary monitor randomly (or so it would seem). So, one minute I'll be looking at a document on the attached monitor and then writing and/or searching the internet or checking my mail for a bit on the laptop screen and then when I glance at the document on the other monitor it will often be a different size than it was a moment before, forcing me to resize it over and over in order to read between bouts of writing which (needless to say) gets slightly frustrating. Anyone know of a reason why this is happening or have any clue how to make it stop?
    Hope this question is posted in the right spot! If not let me know and I'll move it
    Thanks a ton in advance!

    I never had any problems with Word 2004, but Office 2008 has been nothing but a disaster. I usually have Word open in one space, and Powerpoint in another (taking notes on slides for class) But Office will always give me problems with shooting windows into different spaces, or automatically sending me to different spaces. A lot of times the Toolbox completely disappears, and the only way to bring it back is to restart it. It is EXTREMELY frustrating. I have been able to have a Word document open in one space, and another Word document open in another. Sometimes it gathers them all together, sometimes it doesn't. It is way sketchy.

  • RAC 10gr2 using ASM for RMAN a cluster file system or a Local directory

    The environment is composed of a RAC with 2 nodes using ASM. I have to determine what design is better for Backup and Recovery with RMAN. The backups are going to be saved to disk only. The database is only transactional and small in size
    I am not sure how to create a cluster file system or if it is better to use a local directory. What's the benefit of having a recovery catalog that is optional to the database?
    I very much appreciate your advice and recommendation, Terry

    Arf,
    I am new to RAC. I analyzed Alejandro's script. He is main connection is to the first instance; then through sql*plus, he gets connected to the second instance. he exits the second instance and starts with RMAN backup to the database . Therefore the backup to the database is done from the first instance.
    I do not see where he setenv again to change to the second instance to run RMAN to backup the second instance. It looks to me that the backup is only done to the first instance, but not to the second instance. I may be wrong, but I do not see the second instance backup.
    Kindly, I request your assistance on the steps/connection to backup the second instance. Thank you so much!! Terry

  • Any info on using Veritas for offline Portal Cluster backup

    Anyone have detailed info on how to correctly use VERITAS to backup a PORTAL CLUSTER with ORACLE FAILSAFE on WIN32?
    Oh.. well..  INcorrectly ways will suffice as well. 

    Jerry,
    I have had some exposure to Sun Fire servers running Oracle. The disk was made highly available using the Veritas database cluster software. Both servers share the database files stored on a storage array network. Also Volume Replicator is available via Veritas/Symantec.
    You can check the other compatible HA software on;
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d70a790-0201-0010-97a0-fdcb2ab0108e
    Replication Whitepaper Tool on Symantec (needs registration)
    http://www.veritas.com/Vrt/offer?_requestid=17351&a_id=9089&
    Regards,
    James

  • Why Inner join or Outer join is not used for Pool or Cluster tables  ?

    Hi SAP-ABAP Experts .
    With Due Regards .
    May u explain me why Inner join or Outer join is not useful for Pool or Cluster tables  ?
    because peoples advised not use Joins for Pool and Cluster tables , What harm will take place , If we do this ?
    Best Regards to all : Rajneesh

    Both Pooled and Cluster Tables are stored as tables within the database. Only the structures of the two table types which represent a single logical view of the data are defined within the ABAP/4 Data Dictionary. The data is actually stored in bulk storage in a different structure. These tables are commonly loaded into memory (i.e., 'buffered') due to the fact they are typically used for storing internal control information and other types of data with little or no external (business) relevance.
    Pooled and cluster tables are usually used only by SAP and not used by customers, probably because of the proprietary format of these tables within the database and because of technical restrictions placed upon their use within ABAP/4 programs. On a pooled or cluster table:
    Secondary indexes cannot be created.
    You cannot use the ABAP/4 constructs select distinct or group by.
    You cannot use native SQL.
    You cannot specify field names after the order by clause. order by primary key is the only permitted variation.
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • Gui_upload for csv file with numeric n date fields

    Hi ,
      i searched on net on how to use GUI_UPLOAD for csv files using split function but the spilt function requires that the data type of all fields of the internal table should be character whereas in my case there is a numeric n data field too.So kindly help me how to do it.
    One way ppl might suggest that give all the fields as char in the internal n after recieving the data in the internal convert the required fields back to data n numeric n then finally insert to the database but if i have 80 fields u would really dont want to do that as it requires precision to convert it to the same type n length as in the original database for all the fields.

    yeah i guess that would be a bit longer if i m having more no of fields (80) compared to ORACLE where this can be done in a shorter way.
    SO i shall use 2 internal tables here rite?? i mean first one(with all fields as char) for storing the split function values and the other one (with actual data types) .CAN u plz tell me how to convert or cast from one data type to another n while moving values from 1st internal table to another  which way shall i do.
    Thanks for ur help n can u suggest if there is any other method for uploading csv also other than this split method n whether this method is better n faster than others.
    THANX

  • Different useful life in depreciation area - same depreciation

    Hello,
    I have the same depreciation key but different useful life for some assets master data, but when I calculate the depreciation, in the second depreciation area I have the same depreciation amounts like in the first depreciation area. The second depreciation area posts depreciation only...
    Can you help me please?
    Regards,
    Mike

    Hi Mike,
    to answer this question you should at least provide detailed information about the depreciation key used. For instance depreciating with a stated percentage rate wouldn´t consider the useful life, same depreciation amount would be the result. And there are several other possibilities.
    Regards,
    Markus

  • My wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the photo

    my wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the primary photo iCloud account and thus our shared photo system. We are running yosemite OS X 10.10 and iOS 8.0.2... Is there any way to do this?

    my wife and I share an iCloud account for photo library and iCloud drive mainly for our family photo management, but we use different accounts for iMessage/facetime/calendar/etc. With Yosemite, I can't use continuity/handoff without dumping the primary photo iCloud account and thus our shared photo system. We are running yosemite OS X 10.10 and iOS 8.0.2... Is there any way to do this?

  • VM will not boot after moving using Failover Cluster Manager - "a disk read error occurred......"

    My current Configuration:
    3 node cluster, using clustered shared storage and about 22 VM's.   The Host servers are running 2012 Data Center while all guest are running 2012 Standard.  The SAN is EqualLogic and we are using HIT Kit 4.5.
    I have a CSV that is running out of space, so I created another CSV so that I could move some of the VM's to a new home.    I tested this by creating a test VM, and moved it successfully 3 times.     I then moved an actual
    LIVE VM and while it seemed to move ok, it will now not start.   The message is "a disk read error occurred Press ctrl+alt+del to restart".     I moved the test VM and it failed as well.    
    I have read several things about this, but nothing seems to relate to my specific issue.   I have verified that VSS is working and free of errors as well.    From the Settings menu for the VM, if I select "Inspect" the drive,
    the properties all look fine.    It is a VHDX and both the current file size and maximum disk size seem correct.
    The VM's were moved using the "move - virtual machine storage" option within Failover Cluster Manager.
    Suggestions?
    Thanks.

    Lets see if I can answer all of those and I appreciate the brain storming.   This really needs to work, correctly.
    1.  The Storage is moving.
    2.   VM's and SAN are on same device.
    3.  No, my  Clustered Shared Volume, CSV, is out of room, (more one that later)
    4.  No, I actually have 2 sans grouped together.   However, I'm moving the VM', form one CSV to another CSV on the Same san.  EqualLogic PS 6110 is the one I am trying to move VMS around on, and the other SAN not involved in any way except
    for it is in a SAN group is an EqualLogic PS6010.
    5.  No error During move, it took about 5-10 minutes, no error messages.   Note, I did a test and it worked GREAT 3 times.   Now both a live VM, and the test VM are doing the same thing.
    6.  No, the machine is not to large.   The test making was a 50 gig drive, just 2012 standard installed with updates.   The live VM was a 75 gig VM that was my Trend Micro Server, or anti-virus host.
    7.  Expand the existing SCV?   Yes I should be able to, but there is an issue there.   The volume was expanded correctly, Equallogic sees the added space, Fail Over cluster manager sees the added space, however disk manager only
    sort of does.    When looking at disk manager, there are 2 areas that tell you a little bit about the drive.   The top part and then the bottom part.   The top part only shows 500G, the original size, while the bottom part
    says that it is 1 TB in size.   I call Dell's technical support and after they looked at it I was told by the technician that they had seen this a couple of times and the only way to fix it was to move all the VM's to another CSV and delete the troubled
    CSV.   I thought about adding more space to the troubled CSV, but its on a production server with about 12 VM's running on it and I did not want to take a chance.   The Trend VM was running on CSV-1 and working fine.   
    I must admit that the test VM, was on CSV-2.    I moved the Test VM from csv-2 to csv-3 back and forth several times with no errors.   The Trend Server was on CSV-1 and was moved to CSV-3, however it failed.  Again, I then moved
    the test VM from CSV-2 to CSV-3 and it failed the same way.   I could not test the "TEST - VM" on csv-1 due to csv-1 not having enough space.
    8.   I did disable the network from the VM to see if that mattered it did not. 
    9.   I have not yet had a chance to connect the VHDX to a new VM, but I will do that in about an hour, hopefully.    Once I am able to test that suggestion I will post the results as well.
    Again, thanks for all the suggestions and comments, as I had rather have lots to look at and try.   I hope I answered them well enough.
    Kenny

  • IC Web - manager dashboard hangs using HTTPS for CRM_UI_FRAME

    Experts,
    I am on an ISU-CCS project in realization using IC web front end.  Here are our versions:
    CRM2007
    ECC 6.0 EHP3
    We have the IC web client talking to back-end and most everything is looking good.
    I turned on HTTPS/SSL using all the usual notes....and it seems to work well, we can even SSO over to back-end to execute webgui transactions via IC Web.
    My problem is when I use a certain business profile and test:
    Monitoring Operations --> Manager Dashboard
    As long as I have HTTPS turned on for the CRM_UI_FRAME, if I access above mentioned portion of IC Web, it just sits there and creates a hundred different HTTP logins for my ID.  It blinks quick at the bottom and I see it try to execute the bsp: CRM_IC_MDB.
    Funny how it tries to continue to use HTTP even through I am switching to HTTPS everywhere.
    If I go back to HTTP, (turn off switch to HTTPS), the the manager dashboard works OK.
    Normally, I would think problem with HTTPS/SSL setup, but all other portions of IC WEB work great using HTTPS/SSL.
    I check ICM log and nothing unless I bump trace to level2.  Then too much stuff. But I do see this:
    [Thr 1286] Handler 2: HttpAuthHandler matches url: /sap/bc/bsp/sap/crm_ic_mdb/main.do, port: 8000
    [Thr 1286] Handler 3: HttpCacheHandler matches url: /sap/bc/bsp/sap/crm_ic_mdb/main.do, port: 8000
    [Thr 1286] Handler 4: HttpSAPR3Handler matches url: /sap/bc/bsp/sap/crm_ic_mdb/main.do, port: 8000
    [Thr 1286] Handler 0: HttpJ2EEHandler matches url: /sap/bc/bsp/sap/crm_ic_mdb/main.do, port: 8000
    I can't figure this one out......any ideas?
    Thanks,
    Nick

    We figured out the issue.  There is a transaction launcher setting specific to MDB that has a https flag.

  • HT4910 I have 2 lines and on 1 of the main phone I went to settings then storage & backup automatically it showed how much space i have which was not allot and it also showed the other line storage space. I click on manage storage and it used to show both

    I was told that I have 14.9 gb of space on my phone when my total is 15gb. I was adviced to free storage and to click on settings and manage my storage by either purchase more or turning off or deleting some of the back ups. When I went in to settings then to icloud it usually would of showed me both phone storage memory and when I started going down my list and turning off some of the apps from back ups of certain app all of a sudden I couldnt no longer see my phone storage memory or my account name for that matter. Now I only see the other line username and storage space that the other phone has.
    What can I do? I used to see the list of all the apps I have on icloud and now its empty and it tells me I have available 13.4 gb available.
    Please advice. Thank you
    Patricia

    I cannot find this 300GB "Backup" in the Finder, only in the Storage info when I check "About This Mac".
    You are probably using Time Machine to backup your MacBook Pro, right? Then the additional 300 GB could be local Time Machine snapshots.  Time Machine will write the hourly backups to the free space on your hard disk, if the backup drive is temporarily not connected. You do not see these local backups in the Finder, and MacOS will delete them, when you make a regular backup to Time Machine, or when you need the space for other data.
    See Pondini's page for more explanation:   What are Local Snapshots?   http://pondini.org/TM/FAQ.html
    I have restarted my computer, but the information remains the same. How do I reclaim the use of the 300GB? Why is it showing up as "Backups" when it used to indicate "Photos"? Are my photos safe on the external drive?
    You have tested the library on the external drive, and so your photos are save there.  
    The local TimeMachine snapshot probably now contains a backup of the moved library.  Try, if connecting your Time Machine drive will reduce the size of your local Time Machine snapshots.

  • Use different DPS accounts for iPad and Android versions of same app?

    Hi there,
      When creating an Android version of an iPad DPS app should the account used to create the content (the 'Title ID' in the DPS App Builder) be the same for both versions, or different? In the content viewer I know that iPad content will show up even on Android, so I'm thinking that the answer is probably no, but I haven't managed to find it mentioned in the Adobe docs.
      Thanks,
    Toby

    It depends, but usually the answer is that you want to use a different account for iOS and Android. Not all features supported in the iOS viewer are supported in the Android viewer. For example, if you use panoramas or iOS-specific web views in your articles, you'll want to be able to use different content for the Android viewers. Search for "dps supported features" for a comparison chart.
    I use different Application accounts for my apps. I use the Share/Copy feature to transfer the folios from the iOS account to the Android (or Windows) account. Then I delete the few articles that don't work well in the viewer and replace them with articles generated from different source files. That works well and doesn't require too much extra effort.
    If you want to reduce the amount of letterboxing in Android viewers, you'll definitely want to use different accounts and use, for example, 1280x800 folios instead of 1024x768.

  • Where is "Reserve space for disk use" in iTunes? Docs are out of date

    Hello,
    Where did "Resereve space for disk use" go in iTunes? I can't find it any more.
    This is major problem because if I want to auto-fill my phone (I don't have time to constantly set up playlists) I then get constantly get errors that my phone is full and that I can't take photos. This is really frustrating.
    If I got to iTunes Help, the documentation is wrong and out of date. I have iTunes 11.1.5 and if I go to Help -> iTunes Help and look at this section, it's completely wrong. See attached screenshot.
    The whole iTunes UX has become a confusing mess, I hope you're looking for a new product manager for it.
    Thank you,
    Geoff

    I am having the same issue. It even tells you that you can reserve space on your phone in the iTunes help, but I can not figure out how to open the Autofill Settings window in iTunes. Here is what it says in help of iTunes 12.0.1.26:
    Autofill settings
    You can use Autofill to add songs to your iPod, iPhone, or iPad with a single click. You can set Autofill to select songs at random, or you can customize your settings.
    You can select these options in the Autofill Settings window:
    Other options are available at the bottom of the iTunes window when you're viewing music on your device:

Maybe you are looking for

  • Page fault error while calling reports from forms

    dear friends. when a report is called from forms, just before opening up of background engine the application gets hanged with page fault. One has to forcibly shut down the application before loggin again. The error mesage generated from log file is

  • WRT54G v6 - Can Connect to wireless network but can't access internet

    Ok, this is my last resort for help. I spent two hours yesterday with linksys "chat" support to no avail. First the techincal details: OS for all machines = Windows XP Laptop w/two adapters - one wired, one wireless WRT54G v6 upgraded with 1.00.9 fir

  • Am i having Kernal Panics?

    Every so often an application stops responding and must be force quit. After it is force quit a window pops up saying ______ quit unexpectedly. This is normal. What isn't normal is when this happens to OS X. The screen suddenly goes black and the fan

  • OEM 9.2.0.1.0 on Oracle8i DB

    Hello everybody, I have an OEM version 9.2.0.1.0 and I'm connected on my Oracle 8i database version 8.1.6.1.0. That's fine, but when I doubleclick on any object, then the OEM closed, without any error. I can't see the DDL from the tables, the DDL fro

  • How do I deauthorize my computer in Adobe Digital Editions program?

    I authorized my computer with the incorrect Adobe ID, but now I cannot authorize my computer with the correct Adobe ID. It will not let me deauthorize the wrong account nor allow me to authorize the correct account.