Question : Disk 1 Unreadable

I have a new customer that was running a Dell Poweredge 850, with a Nexsan ATABaby External storage attached running Raid 5 on 4 ATA drives. Controller on ATABaby failed. We swapped drives from failed unit into spare ATABaby, booted system up. In SCSI config on startup, saw the NEXSan and drive. Once booted into windows, Disk Management is saying:

Disk 1
Unknown

Unreadable

Looking for best suggestions to replace header information on the drive so we can recover data since the customer had no backups.

Thanks in advance for your assistance.

Answer : Disk 1 Unreadable

If you don't want to complicate things up, simply add this function and call it with your Request. It will filter SQL injection commands and leave SQL friendly value.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
Function Injection(x)
    x = Replace(x,"select","")
    x = Replace(x,"drop","")
    x = Replace(x,"--","")
    x = Replace(x,"insert","")
    x = Replace(x,"delete","")
    x = Replace(x,"xp_","")
    x = Replace(x,"*","")
    x = Replace(x,"#","")
    x = Replace(x,"%","")
    x = Replace(x,"&","")
    x = Replace(x,"'","")
    x = Replace(x,"(","")
    x = Replace(x,")","")
    x = Replace(x,"/","")
    x = Replace(x,"\","")
    x = Replace(x,":","")
    x = Replace(x,";","")
    x = Replace(x,"<","")
    x = Replace(x,">","")
    x = Replace(x,"=","")
    x = Replace(x,"[","")
    x = Replace(x,"]","")
    x = Replace(x,"?","")
    x = Replace(x,"`","")
    x = Replace(x,"|","")
    Injection = x
End Function
Random Solutions  
 
programming4us programming4us