Videos Disk Space Usage

Good morning,
When I go to 'About this Mac' I see it says I've got 81 GB of videos on my Mid 2013 MacBook Air (OS X Yosemite 10.10.1), but I am sure I don't have that many, also because when I click on the videos folder in Finder it shows I've got about 10 GB of videos. I've deleted all my iTunes movies, even the folders on iTunes Media. How can I free this space?
Thank you,
Luis García

marco wrote:
Hi all,
how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • MacBook Disk Space Usage

    Hi,
    Has anyone found a utility that can be used to locate disk space usage on the MacBook? I would like to find out what files are eating up my disk space and would prefer to not have to use UNIX commands to accomplish this. I need to delete something off my computer but need help to locate the culprit. Any help is appreciated.
    Thanks

    Use a program such as WhatSize or Disk Inventory X to determine where the space is being used.
    (38758)

  • Disk space usage by table

    Hi all,
    how do I determine disk space usage by table1, table2 ?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • SQL AGENT JOB FOR DISK SPACE USAGE ALERT

    Hello Experts
    what is the best way to set up a disk space usage alert for my sql server 2008r2 databases. i want to get a notification or alert whenever the disk usage is >80%, thank you as usual.

    Hi
    You can use sql server job for same. I am using below procedure configured with sql job running every 15 mins
    Example: EXEC [DBA_DiskSpaceMntr]
    @mailto = 'team mail',
    @CDrivethreshold = 1024,
    @OtherDrivethreshold = 10240
    CREATE PROCEDURE [dbo].[DBA_DiskSpaceMntr]
    @mailto nvarchar(4000),
    @CDrivethreshold INT,
    @DDrivethreshold INT,
    @YDrivethreshold INT,
    @OtherDrivethreshold INT
    AS
    BEGIN
    declare @count int;
    declare @DiskFreeSpace int;
    declare @tempfspace int;
    declare @tempdrive char(1);
    declare @mailbody nvarchar(4000);
    declare @MailSubject nvarchar(1000);
    declare @AlertMessage nvarchar(4000);
    declare @altflag bit;
    declare @sub nvarchar(4000);
    declare @cmd nvarchar(4000);
    set @count = 0;
    SET @mailbody = '';
    SET @cmd = '';
    set nocount on
    IF EXISTS(select * from sys.sysobjects where id = object_id('#driveinfo'))
    drop table #driveinfo
    create table #driveinfo(id int identity(1,1),drive char(1), fspace int)
    insert into #driveinfo EXEC master..xp_fixeddrives
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('C')
    IF @DiskFreeSpace < @CDrivethreshold
    Begin
    SET @MailSubject = 'Drive C: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive C: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    --select * FROM #driveinfo where drive in ('L')
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('D')
    IF @DiskFreeSpace < @DDrivethreshold
    Begin
    SET @MailSubject = 'Drive D: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive D: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('Y')
    IF @DiskFreeSpace < @YDrivethreshold
    Begin
    SET @MailSubject = 'Drive Y: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive Y: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'profile_name',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    set @mailbody='';
    while (select count(*) from #driveinfo ) >= @count
    begin
    set @tempfspace = (select fspace from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    set @tempdrive = (select drive from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    if @tempfspace < @OtherDrivethreshold
    BEGIN
    SET @altflag = 1;
    SET @mailbody = @mailbody + '<p>Drive ' + CAST(@tempdrive AS NVARCHAR(10)) + ' has ' + CAST(@tempfspace AS NVARCHAR(10)) + ' MB free</br>'
    --SET @cmd = 'dir /s /-c ' + @tempdrive + ':\ > ' + @logfile
    --EXEC xp_cmdshell @cmd
    END
    set @count = @count + 1
    end
    IF (@altflag = 1)
    BEGIN
    SET @sub = 'Monitor Space on ' + cast(Serverproperty('Machinename') as nVarchar)
    set @mailbody = 'The below drives on ' + cast(Serverproperty('Machinename') as nVarchar) + ' have low disk space then threshold limit ' + CAST(@OtherDrivethreshold as VARCHAR(10)) +' Please free up the space in below specified drives <p>' + @mailbody
    --print 'Space on ' + @tempdrive + ': is very low: ' + str(@tempfspace)+ 'MB'
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'Profile name',
    @recipients= @mailto,
    @subject = @sub,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    END
    drop table #driveinfo
    set nocount off
    END
    Thanks Saurabh Sinha
    http://saurabhsinhainblogs.blogspot.in/
    Please click the Mark as answer button and vote as helpful
    if this reply solves your problem

  • Checking the schema-wise disk space usage

    hi
    can we get the disk space usage for every individual schema separately ?

    What about this:
    select OWNER, sum(BYTES) from DBA_SEGMENTS group by OWNER

  • Graphical disk space usage analysers

    anyone got any suggestions for other disk space usage analysers?
    it's nice that on ncdu's site a few "similar projects" are mentioned.
    treesize is a lovely little gui app, does what it needs to, clean n no fuss.
    ~but it's not in pacman or the AUR.
    i'm not really interested in filelight, since it will want to drag along half of kde, and similarly i expect baobab is a bloater for the same reason with gnome.  no sign of philesight in the repo either though.
    anyone got any suggestions for other disk space usage analysers?
    perhaps a lighterweight, less DE-dependent, ring-style one?  ...if such a thing exists yet.
    or is xdiskusage the best i'll find in the arch repos?

    Just for the record, you don't have to go to ncdu or treesize webpage to look for alternatives, we have (some of) them listed in our wiki: https://wiki.archlinux.org/index.php/Co … y_Programs
    Maybe you can ask sb to put treesize in the AUR: https://bbs.archlinux.org/viewforum.php?id=38 ?

  • Host disk space usage

    Is there a way to get a report of available disk space for a host?
    We do not autoextend our tablespaces, so whenever we need to add more space
    , we have to shell into the OS (Unix) and run a "df -k" to see what mount points have space available.
    Is it possible to have the OEM Grid send us this info via notification and how?
    Thanks.
    Message was edited by:
    kaapie
    I found an answer: Table/View for Filesystem Space Available Metric?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Slightly OT: Video Disk Space Calculator app now available

    Hi all,
    I'm an FCP editor who works in a lot of different codecs, so I quite often need to know the disk space needed for a length of footage in a certain one. I know there are a few apps (widgets I think) that do this, but I disable Dashboard and haven't found any others I like.
    As a former programmer by trade, I figured this was a good reason to try learning Cocoa programming.. So, as my first project, I present Video Disk Space Calculator (OSX 10.3 and above, 49kb zip file).
    It's a tiny little app that does two things - calculates hard drive space based on codec/length of footage, and displays/prints out a table of codecs and their data rates. It's completely free of course. I would REALLY appreciate feedback, I figure by correcting issues and adding features I'll learn more about Cocoa programming...
    Download here: Video Disk Space Calculator
    Comments/Questions/Etc: http://www.rabidjackalope.com/vdsc/http://www.rabidjackalope.com/vdsc/
    G5 Dual 2.5Ghz, 23 Cinema HD Display   Mac OS X (10.4.6)  

    this is very nice! i particularly like the data rate
    chart.
    how about something similar for bitrates and various
    compression methods? there are a few calculators out
    there but i don't like any of them.
    Thanks, glad it is useful.
    I'll keep the bitrate and compression stuff in mind for Version 2 in the future. It's a good idea.
    Thanks,
    Jason

  • Photos disk space usage

    I don't quite understand what Photos does: it uses 3 times as much disk space as Aperture for the same library.
    My Aperture library with some 53k photos (~200GB on external SSD) and a few hundred videos (~100GB on external SSD) uses around 40GB disk space for thumbnails in various sizes, database and so on.
    After a few hours of importing, the same library in Photos has grown to 119.9GB.
    Settings are: do not copy images to library, no use of iCloud Photo Library (and thus no "optimize Mac space usage").
    Inside the library file, the Thumbnails directory uses a sane-looking 16.66GB, Previews is 7.29GB, and Masters uses only 1.35GB, since almost all images are still stored in Aperture referenced masters on external SSD.
    The largest directory inside the library is Resources > model resources, with a whopping 86GB for 147k objects (images).
    I'm almost sure these are a result of my trying and then disabling iCloud Photo Library during import yesterday afternoon.
    Since Photos does not delete those resources for some reason (disk space and RAM are always cheap and plentiful for Apple, I guess) – is there a way for me to get rid of it if I don't want iCloud Photo Library? Would Photos be smart enough to start culling images here when my system disk space, a paltry 256GB SSD, dwindles towards zero?

    graigsmith wrote:
    it could be because the side bar images are square, maybe it caches the square cropped images.  Theres a setting to not crop the thumbnails on the sidebar.
    wonder if that does anything.
    i have noticed that it's way faster now than in beta.   The cache probably helps speed it up a lot.
    I'm sure that speed is the reason they went with this heavy-handed way of handling faces. This will help a lot when people start having their masters library in the cloud.
    However, when Photos simply fills up my system SSD to the point of OSX complaining that it can't work reliably anymore for lack of space, as it did on the first Aperture library import here and was about to do again hours ago, this really is besides the point somewhat.

  • Disk Space Usage on my Mac Mini

    Where has all my disk space gone?
    Info on my Mac Mini drive is as follow;
    Capacity: 74.21 GB
    Available: 9.68 GB
    Used: 64.53 GB
    Doing the info on all folders visible in Finder;
    Applications: 5.29 GB
    Developer: 160kB
    Library: 10.75 GB
    System: 2.53 GB
    Users: 13.8 GB
    I don't even have to try and add these up as they are nowhere near the total of 64 GB used, so what directories/files are not visible? Or what is using more than 30 GB of space that I cannot see?
    I trying to free space up and or move things of this drive because is is dog slow right now and it.
    Any insight would be appreiciated.
    Warren

    OK, So I dl'd that and ran it and it only showed an additional swap file directory called "Private" that had about 3 gigs, still about 27 gig's missing.....
    In this program the bottom bar shows 74.2 capacity, 61.5 used, 12.6 available
    Big directories (anything over 1gig)
    13.7 users
    10.7 Lib
    5.28 Apps
    2.53 System
    2.93 Private
    About 35 gigs
    then a bunch under 1 gig that total less than 1 gig,
    so say around 25.5 unaccounted for ?????????????
    nice program but still wondering where my hard drive space has gone.....
    Warren

  • Disk Space Usage Reported Varies

    I'm using OS X Mountain Lion on a MacBook Pro. I'm trying to create a disk image (.dmg) of my hard drive to back it up offsite but it's ending up larger than the space used on the disk. In fact, the space used that the OS reports to me varies widely from different sources.
    Hard Drive "get Info": 59 GB used
    Disk Inventory X: reports 105 GB used on the disk, but the files shown total only about 59 GB used
    Disk Utility: reports 115 GB used
    When I create a compressed disk image through Disk Utility, the size is about 85 GB, which is more than the apparent size of the files on the disk. UNLESS it's using the Disk Utility figure of 115 GB.
    I ran verify/repair disk and it says everything is fine. I repaired permissions, too.
    Why is the reported disk space used so different?

    1. Re-index Macintosh HD.
        This will take a while. Wait until it is finished.
        System Preferences > Spotlight > Privacy
        http://support.apple.com/kb/ht2409
    2. Backup your computer.
       Try OmniDiskSweeper. This will give the storage size details of the items.
       https://www.omnigroup.com/more
       Select Macintosh HD and click  “Sweep Selected Drive” at the bottom.
       Delete the files you don’t want to keep.
       Be careful. Delete only the files that can be safely  deleted. If you are not sure about any file, don’t touch it.
       Discrepancy in calculating space between Finder and Disk Utility
       “Finder does not take into account the  Backups/ local snapshots,
        but disk utility includes them.”
        http://pondini.org/TM/30.html

  • Detailed look on Disk-Space-Usage

    On the server (NW6.0-SP5) I need to have a detailed look,
    who or what eats up the disk-space.
    At time I only have some trends from the backup-software,
    where I can see from the log-files i.e. volume GWX getting
    from 21 GB to 24 GB and volume IVM getting from 46 GB to 50
    GB in 5 months.
    These are absolute small numbers, but from the overall view
    on the business I do not get an idea where these gains might
    come from and my guess is an employee or application running
    wild.
    Are there any possibilities to get this trend more detailed
    from NRM or any other Netware-Tools?
    Sincerely
    Karl

    That is a stunning pile of information to work with. I did
    not try this before. Thanks for pointing out.
    Sincerely
    Karl
    >>> Anders Gustafsson<[email protected]>
    20.04.2011 13:03 >>>
    >,
    >> Are there any possibilities to get this trend more
    >detailed
    >> from NRM or any other Netware-Tools?
    >>
    >Sure, try NRM, select a volume, Inventory
    >
    >- Anders Gustafsson (Sysop)
    > The Aaland Islands (N60 E20)
    >
    >
    >Novell has a new enhancement request system,
    >or what is now known as the requirement portal.
    >If customers would like to give input in the upcoming
    >releases of Novell products then they should go to
    >http://www.novell.com/rms

  • Shrink system tablespace, or any laternate to reduce disk space usage!

    Dear All,
    My Database is 11gR1 and Linux is the operating system.
    My System tablespace is consuming 24,000 MB disk space, The user i have created that contain all the objects is another tablespace.
    I just want to know is there any way to shrink system tablespace or anything else that can be done to reduce its size?
    Plus what are the directories from where we can delete logs and other files that do not affect the running of database. My disk space is 99% full and i have to delete files.
    Regards, Imran

    misterimran wrote:
    Dear All,
    My Database is 11gR1 and Linux is the operating system.
    My System tablespace is consuming 24,000 MB disk space, The user i have created that contain all the objects is another tablespace.
    I just want to know is there any way to shrink system tablespace or anything else that can be done to reduce its size?
    Plus what are the directories from where we can delete logs and other files that do not affect the running of database. My disk space is 99% full and i have to delete files.
    Regards, ImranFirst, do this:
    sql> select distinct owner from dba_segments where tablespace_name = 'SYSTEM';Make sure the only objects in the SYSTEM ts are owned by legit users of that ts - SYS, SYSTEM, and OUTLN
    As for log files .. look at your listener log. look at your alert log. look at any trace files in adump, bdump and udump that are old enough you don't want them any more.

  • GW Disk Space Usage Management

    Hi There!
    We have a client who amoung 20 employees uses around 250GB of Disk Space for
    GW.
    Whilst we aren't having any significant issues presently around GW, each of
    the mailboxes for the heavy users is around 20-30GB. They have asked us to
    show them what is taking the most space, and get their levels down a litte.
    Say 4GB a Mailbox.
    Is it possible to run a report that shows me the 5000 largest messages in
    the system across either mailbox or Post Office.
    I can do this with a find * from the client and sort by size, but it doesn't
    really show me if deleting said message will actually bring down the size,
    as if someone else has it too, then it just removes the pointer.
    Also is there something required once a customer removes say 5000 messages
    from their mailboxes, to tell GW to release the space etc?
    Cheers
    Andre

    >>> On 14/02/12 at 5:02 p.m., Michael Bell<[email protected]> wrote:
    > On 2/13/2012 4:42 PM, Andre Southgate wrote:
    >> Hi There!
    >>
    >> We have a client who amoung 20 employees uses around 250GB of Disk Space
    > for
    >> GW.
    >>
    >> Whilst we aren't having any significant issues presently around GW, each
    > of
    >> the mailboxes for the heavy users is around 20‑30GB. They have asked us
    > to
    >> show them what is taking the most space, and get their levels down a
    > litte.
    >> Say 4GB a Mailbox.
    >>
    >> Is it possible to run a report that shows me the 5000 largest messages
    > in
    >> the system across either mailbox or Post Office.
    >>
    >> I can do this with a find * from the client and sort by size, but it
    > doesn't
    >> really show me if deleting said message will actually bring down the
    > size,
    >> as if someone else has it too, then it just removes the pointer.
    >>
    >> Also is there something required once a customer removes say 5000
    > messages
    >> from their mailboxes, to tell GW to release the space etc?
    >>
    >> Cheers
    >>
    >> Andre
    > MAILBOX STATISTICS in GWCHECK would be faster.
    > and you must do a REDUCE to fully reclaim space.
    So if the same 50MB message was sent to 3 people, which persons mailbox does
    it show up in? How do I know when I delete the message if it's clear of all
    users mailbox?
    Sorry for the dumb question!

  • Dbconsole - disk space usage

    I am not using grid control but I am using dbconsole.
    Does dbconsole consume disk space on the server?
    If so, do I have to run any purge routines to free up disk space?
    And in which directories does dbconsole consume disk space?
    Thanks in advance.

    Database user "SYSMAN" contains the complete meta data of Database control. If you want to check the size then check the default datafile assigned to SYSMAN.
    See the below link for data upload frequency
    http://download.oracle.com/docs/cd/B19306_01/em.102/b16230/howto.htm#CHDECDCC
    Hope this helps,
    Regards,
    http://www.oracleracexpert.com/
    Time difference between the RAC nodes is out of sync
    http://www.oracleracexpert.com/2009/12/time-difference-between-rac-nodes-is.html
    Set DISPLAY variable & Enable access control
    http://www.oracleracexpert.com/2009/12/set-display-variable-enable-access.html

Maybe you are looking for

  • Hi could someone help me with this basic issue ..

    'sql*plus' is not recognized as an internal or external command, operable program or batch file. I have installed expression addition for practice on a win xp OS it was working fine but now this is the error when , I am trying to start the data base.

  • Can't get back to 300Mbps with my wrt300n v1 router?

    Hello All, My wrt300n, v1 router has always worked great, straight out of the box.  I use various adapter cards and have never had a problem?  All of the cards have connected at their individual full speeds?  Except 1 Airlink 300n that connects at 27

  • Clock icon disappeared / lost

    Hi, I still have clock funtionality (alarms go off, etc.) but the only way to access the clock is by searching on the word "clock" using the new search feature. The icon has disappeared or is lost, leaving a blank spot on the home screen. This did no

  • Audition CS5.5 and Guitar Rig 4/5

    I've just installed AA CS5.5 as a trial, and I found a strange conflict with Native Instruments Guitar Rig VST plugin. The software recognizes the plugin smoothly in the plugin manager, but it just stays greyed out, so I can't use it. I've tried with

  • Mac book pro runs hot and restarts

    my mac book pro 13 in 2009 modle  runs hot and randomly restarts. the fan is operable.