--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dcm4che/c406d923-7b84-4347-accc-4c9ebd001680%40googlegroups.com.
Hi DearI got your point. First of all, can I know which DCM4CHE version currently you are using? Bye>>Best Regards From
Maj Udara Pathirage
Master of IT, UCSC, Colombo | BSc in ENCM, Kelaniya | Dip. IT, NIBM | MCS(SL) | MBCS CITP (UK) | SNOMED CT
On Mon, Sep 16, 2019 at 7:56 AM Clédio Moreira Paiva <cled...@gmail.com> wrote:
Hello--
i have a problem with one of my dcm4chee servers. The main disk (a kingston SSD) has bad sectors, and i lost the integrity of the database (i have backups, but the backups are also currupted).
But my storage HDD is OK, so i have all the images saved and healthy. This server has 3 years of studies. its a 8TB HDD.
I think that I can replace the database's corrupted SSD, reinstall the system and send the images to the server again, using the STORESCU TOOL from dcm4chee toolkit.
But it is a very large amout of images to send (8TB). I think that STORESCU has a limit to scan subfolders, and even if I send separetely the Years folder, I think that is just "too much" to STORESCU tool ... Even sending MONTHs folder separately I think that can be too much .. .
How can I proceed in this scenario? Whats the reliable way to send these studies to server, and be sure that each study was sent correctly?
Thanks!
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dcm4che/b815f316-e8cd-46f1-8ce9-69ce8852dff1%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dcm4che/b815f316-e8cd-46f1-8ce9-69ce8852dff1%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dcm4che/f71a855a-9503-4e85-8961-cfebd393257e%40googlegroups.com.
Hola Clédio,
(I forgot to answer the list too, Clédio will see this message as
a duplicate, sorry)
It's true, you can't feed the whole disk to the tool because it will choke, you have to divide your migration in parts in two ways:
Lets see an example:
find /dicom/2019/09 -type f -print0| xargs -0 /storescu -c DCM4CHEE@localhost:11112
But, if you have thousands of files on that path, and you pass them as a parameter, that would overflow the shell and the app, so what xargs will do is only passing enough filenames as parameter to not overflow the shell, then run the command again with another bunch of files, then again...
Instead of giving control to xargs for the number of parameters, you could use the option '-n' to tell exactly how many parameters to pass on each run. So, the final example that will let you understand it better:
find /dicom/2019/09 -type f -print0| xargs -0 -n 10 /storescu -c DCM4CHEE@localhost:11112
I you had, lets say, a hundred files on that path, xargs would the storescu tool ten times, passing ten files as a parameter each time.
Start with a small directory, then begin migrating month by month.
PS: The '-print0' and '-0' options are there to avoid problems with paths containing spaces
PPS: Go to the mailing list archive and search for 'xargs' to find more examples--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dcm4che/c406d923-7b84-4347-accc-4c9ebd001680%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm...@googlegroups.com.