Hiksemi D300 PRO Tantalum Capacitor 1920GB SATA III Enterprise SSD - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

Hiksemi D300 PRO Tantalum Capacitor 1920GB SATA III Enterprise SSD

SKU: HS-SSD-D300-PRO-1920G
R 38 757.58
In Stock

1920 GB enterprise-grade storage | Up to 536 MB/s sequential read | 10,512 TBW endurance | AES 256-bit hardware encryption | 5-year limited warranty The HIKSEMI D300 PRO 1920GB SATA III Enterprise SSD is built for servers and data centres that demand consistent, high-throughput storage under...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

1920 GB enterprise-grade storage | Up to 536 MB/s sequential read | 10,512 TBW endurance | AES 256-bit hardware encryption | 5-year limited warranty

The HIKSEMI D300 PRO 1920GB SATA III Enterprise SSD is built for servers and data centres that demand consistent, high-throughput storage under sustained mixed workloads. Powered by the MAS1101 SATA controller and Yangtze Memory 128-layer 3D TLC NAND, it delivers sequential read speeds of up to 536 MB/s and sequential write speeds of up to 505 MB/s, with random read and write performance of up to 96,000 and 56,000 IOPS respectively — enough headroom to handle complex, concurrent read/write requests without degrading quality of service. Data integrity is protected at every layer: end-to-end data protection, complete power-off protection backed by the tantalum capacitor design, and an exception read-only firmware auto-reloading function ensure that critical data remains intact even in the event of an unexpected shutdown. AES 256-bit hardware encryption adds a further layer of security for sensitive enterprise environments. With a rated endurance of 10,512 TBW, a 2-million-hour MTBF, and an UBER of 10⁻¹⁷, the D300 PRO is engineered for the long haul, and is covered by a 5-year limited warranty or 3 DWPD, whichever comes first.

Features

  • Delivers sequential read speeds of up to 536 MB/s and sequential write speeds of up to 505 MB/s for high-throughput data centre workloads.
  • Random read and write performance of up to 96,000 and 56,000 IOPS (4 KiB QD32) for consistent QoS under complex I/O loads.
  • Tantalum capacitor design with complete power-off protection safeguards in-flight data during unexpected power loss.
  • End-to-end data protection and exception read-only firmware auto-reloading function maintain data integrity in fault conditions.
  • AES 256-bit hardware encryption engine secures sensitive enterprise data at rest.
  • Supports live firmware hot-update — firmware takes effect without requiring a system restart.
  • Rated endurance of 10,512 TBW with an MTBF of 2 million hours and UBER of 10⁻¹⁷.
  • YMTC 128-layer 3D TLC NAND in a standard 2.5-inch 7 mm form factor for broad server compatibility.

Specifications

  • Capacity: 1920GB
  • Form Factor: 2.5-inch
  • Interface: SATA 6Gb/s
  • Sequential Read: 536 MB/s
  • Sequential Write: 505 MB/s
  • Endurance: 10512 TBW
  • Heatsink Included: No
  • Colour: Black
  • Warranty: 60 months
  • Product Dimensions: 10 x 6.9 x 0.6 cm
  • Product Weight: 85g

What's in the Box

  • Hiksemi D300 PRO Tantalum Capacitor 1920GB SATA III Enterprise SSD x1
Brand -
Colour Black
Form Factor 2.5-"
Interface SATA 6Gb/s
Capacity 1920GB
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty -
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Micron 7450 Pro 1.92TB U.3 NVMe SSD Non-SED
Micron

Micron 7450 Pro 1.92TB U.3 NVMe SSD Non-SED

R 24 388.81

Out of Stock

Micron 5400 PRO 960GB SATA M.2 (22x80mm) Non-SED
Micron

Micron 5400 PRO 960GB SATA M.2 (22x80mm) Non-SED

R 13 674.52

Out of Stock

Micron 7450 PRO 960GB U.3 NVME SSD TCG-Opal
Micron

Micron 7450 PRO 960GB U.3 NVME SSD TCG-Opal

R 16 581.50

Out of Stock

Micron 7450 PRO 3.84TB M.2 NVMe SSD Non-SED
Micron

Micron 7450 PRO 3.84TB M.2 NVMe SSD Non-SED

R 36 857.66

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!