<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to list All volumes snapshots usage in a Aggregate in ONTAP Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115261#M24554</link>
    <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I don't have POWERSHELL tool kit in-paced yet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this via CLI or Unified Manager?&lt;/P&gt;</description>
    <pubDate>Mon, 01 Feb 2016 22:36:17 GMT</pubDate>
    <dc:creator>heightsnj</dc:creator>
    <dc:date>2016-02-01T22:36:17Z</dc:date>
    <item>
      <title>How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115212#M24533</link>
      <description>&lt;P&gt;I need to list how much space has been taken by volumes Snapshots in an Aggregate. Is there any way to do that either via CLI, or GUIs?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 22:12:01 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115212#M24533</guid>
      <dc:creator>heightsnj</dc:creator>
      <dc:date>2025-06-04T22:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115224#M24536</link>
      <description>&lt;P&gt;Not sure about GUI or CLI, but you can use the PowerShell Toolkit to get this done pretty quick...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$result = @()

foreach ($aggregate in Get-NcAggr) {
    $data = "" | Select Aggregate,VolSnapSpaceGB
    $data.Aggregate = $aggregate.Name
    $data.VolSnapSpaceGB = 0

    foreach ($volume in (Get-NcVol -Aggregate $aggregate)) {&lt;BR /&gt;        # get the cumulative total for the oldest snapshot
        $snapSpace = (Get-NcSnapshot -Volume $volume | Sort-Object -Property Created | Select-Object -First 1).CumulativeTotal
        $data.VolSnapSpaceGB += [Math]::Round($snapSpace / 1gb, 2)
        
    }
    
    $result += $data
}

$result&lt;/PRE&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Sun, 31 Jan 2016 19:57:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115224#M24536</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2016-01-31T19:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115261#M24554</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I don't have POWERSHELL tool kit in-paced yet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this via CLI or Unified Manager?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2016 22:36:17 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115261#M24554</guid>
      <dc:creator>heightsnj</dc:creator>
      <dc:date>2016-02-01T22:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115289#M24557</link>
      <description>Hi Asullivs,&lt;BR /&gt;&lt;BR /&gt;I have a lot of snapshots for each volume, and wanted to sum them up together. Is you script include or snapshots for each volume or just add one of them up?&lt;BR /&gt;&lt;BR /&gt;Can you please also provide the list of total amount of snapshots for each volume in aggregates basis?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot</description>
      <pubDate>Tue, 02 Feb 2016 13:46:29 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115289#M24557</guid>
      <dc:creator>heightsnj</dc:creator>
      <dc:date>2016-02-02T13:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115305#M24563</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How about the "aggr show_space" CLI command?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does that give the info you need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Luck!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Richard.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 15:54:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115305#M24563</guid>
      <dc:creator>rh</dc:creator>
      <dc:date>2016-02-02T15:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115313#M24570</link>
      <description>&lt;P&gt;aggr show-space only shows snapshots on aggr level which is not what I want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to have a summary report on the amount of the space taken by snapshots for each volume in aggr basis.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 18:31:56 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115313#M24570</guid>
      <dc:creator>heightsnj</dc:creator>
      <dc:date>2016-02-02T18:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to list All volumes snapshots usage in a Aggregate</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115314#M24571</link>
      <description>&lt;P&gt;The total snapshot space used by a volume is reported in the volume object, we just need to display it in a friendly format...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Get-NcVol | Select-Object Aggregate,Name,
    @{
        'Name' = "SizeUsedBySnapshots"; 
        'Expression' = { 
            $_.VolumeSpaceAttributes.SizeUsedBySnapshots | ConvertTo-FormattedNumber -Type DataSize 
        }
    } | Sort-Object -Property Aggregate,Name&lt;/PRE&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 18:49:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/How-to-list-All-volumes-snapshots-usage-in-a-Aggregate/m-p/115314#M24571</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2016-02-02T18:49:48Z</dc:date>
    </item>
  </channel>
</rss>

