Find All Cisco Devices and Their Date of Manufacturing
This report pulls the date of manufacturing from the serial number and provides an overview of all switches with their manufacturing date in a chart. Find out how old your network equipment is and which devices might be first in line for a replacement. Alternatively, you can use the Cisco Date of Manufacturing report if you want the standard version of this report. You can use this report in the dashboard chart report widget to display get the chart displayed below.
To use this in a chart widget, prefix the report name with “Chart:” and select it in the chart report widget found on a dashboard.
Cisco Date of Manufacturing Chart Query
Select Top 1000000 DatePart(yyyy, DateAdd(DAY, 7 *
SubString(tblAssetCustom.Serialnumber, 6, 2) - 7, DateAdd(YEAR, 96 +
SubString(tblAssetCustom.Serialnumber, 4, 2), 0))) As ManYear,
Count(tblAssets.AssetID) As Total
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.Serialnumber <> '' And tblAssetCustom.State = 1 And
tblAssetCustom.Manufacturer Like '%cisco%' And tsysAssetTypes.AssetType = 6
Group By DatePart(yyyy, DateAdd(DAY, 7 * SubString(tblAssetCustom.Serialnumber,
6, 2) - 7, DateAdd(YEAR, 96 + SubString(tblAssetCustom.Serialnumber,
4, 2), 0)))
Order By ManYear
Show
Hide
NO CREDIT CARD REQUIRED
Ready to get started?
You’ll be up and running in no time.