SCP does not seem to preserve ownership stamps even if used with -p option.
scp -p /mysql/serv/data_summary.* some_server:/mysql/test/
The files are owned by mysql and I want the same ownership to be assigned on the destination server. I need to copy files as root on both servers due to some admin issues. I can not change to mysql@
Try to use rsync, it has a lot more benefits besides keeping ownership, permissions and incremental copies:
Besides that, since rsync uses ssh, it should work where scp works.
That is correct. "-p" does not do that. See the man page:
Notice it says times and modes, NOT user/group ownership. You will have better luck with "rsync", as it has various capabilities around preserving permissions when copying between disparate systems. "-p" in rsync, for example.