<?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 SnapShot Space Usage in ONTAP Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113492#M24080</link>
    <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to find out the space usage of snapshots on all volumes in 7 mode and cluster mode. Please suggeset if there is any way if we can monitor the space usage of snapshots on all volumes and generate reports weekly basis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;
&lt;P&gt;VK&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 22:33:32 GMT</pubDate>
    <dc:creator>1VINAYKUMAR</dc:creator>
    <dc:date>2025-06-04T22:33:32Z</dc:date>
    <item>
      <title>SnapShot Space Usage</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113492#M24080</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to find out the space usage of snapshots on all volumes in 7 mode and cluster mode. Please suggeset if there is any way if we can monitor the space usage of snapshots on all volumes and generate reports weekly basis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;
&lt;P&gt;VK&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 22:33:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113492#M24080</guid>
      <dc:creator>1VINAYKUMAR</dc:creator>
      <dc:date>2025-06-04T22:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: SnapShot Space Usage</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113496#M24082</link>
      <description>&lt;P&gt;This can be easily done in powershell&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 15:46:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113496#M24082</guid>
      <dc:creator>JGPSHNTAP</dc:creator>
      <dc:date>2015-12-09T15:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: SnapShot Space Usage</title>
      <link>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113502#M24083</link>
      <description>&lt;P&gt;To view total snapshot space used for each volume, you can use a short PowerShell script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Get-NcVol | ?{ 
    $_.VolumeStateAttributes.IsNodeRoot -eq $false 
} | %{ 
    $_ | Get-NcSnapshot | Sort-Object -Property Created | Select-Object -First 1 
}&lt;/PRE&gt;&lt;P&gt;To sum the size of all snapshots, just add the CumulativeTotal property together:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$total = 0

Get-NcVol | ?{ 
    $_.VolumeStateAttributes.IsNodeRoot -eq $false 
} | %{ 
    $oldest_snap = $_ | Get-NcSnapshot | Sort-Object -Property Created | Select-Object -First 1 
    $total += $oldest_snap.CumulativeTotal

    $oldest_snap
}

Write-Output "Total size of all snapshots = $([Math]::Round($total / 1GB, 2)) GB"&lt;/PRE&gt;&lt;P&gt;Andrew&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2015 17:18:28 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Discussions/SnapShot-Space-Usage/m-p/113502#M24083</guid>
      <dc:creator>asulliva</dc:creator>
      <dc:date>2015-12-09T17:18:28Z</dc:date>
    </item>
  </channel>
</rss>

