I don't understand how wiping the drive will help, it might be a hardware problem, or your XP install media might be corrupt. But if you want to wipe it anyway...
Boot off a Linux LiveCD/USB and run "sudo dd if=/dev/zero of=/dev/sda bs=512 count=1" in a terminal to copy zeros (from /dev/zero) to the first sector (the first 512bytes) of the first drive (/dev/sda), which should be the
SSD. This will erase the bootloader and partition table (be careful, don't have any drives with important data connected). Afterwards, recovery software could find the partitions and files, but the drive will appear blank to most software.
If you want to completely* erase the entire drive, then run "sudo dd if=/dev/zero of=/dev/sda". This will write zeros (from /dev/zero) to the first drive (/dev/sda) until it can't write anymore. This'll take awhile (minutes on the small SSDs common to the 9), and dd doesn't usually show a status display.
* SSDs shuffle their storage around and reserve some capacity for wear leveling. The reserved capacity won't get erased by this command, and after the shuffling, it may hold useful files/data. But recovery would be difficult.