This is command to tar and together ssh it to another server. The source server does not have impact of hard disk usage, all the tared data sending over destination server on the fly over ssh. This is extremely useful copying data from source server that disk space is critical.

tar zcvf - /data | ssh root@192.168.0.200 "cat > /dest-svr-backupdir/data.tar.gz"