you should avoid the ntfs-3g-adv extension because the current ntfs-3g will have most likely more features and will be more stable at the same time. besides of that, I suggest using labels for mounting and setting them with ntfslabel e.g. so that it your devices look like
/dev/sda3: LABEL="DATA" UUID="01947F7B03E63E78" TYPE="ntfs"
because UUIDs really don't make sense for manually mounting and umounting partitions or for humans at all IMHO.
fstab doesn't require UUIDs, labels work as well (but only with util-linux.tcz, not with the busybox mount).
UUID=6054DA9E54DA766E /mnt/sdc1 ntfs-3g noauto,users,exec 0 0
LABEL=DATA /mnt/sdc1 ntfs-3g noauto,users,exec 0 0
another option would be to refer in fstab directly to the symlinks (to avoid util-linux.tcz)
/dev/disk/by-uuid/6054DA9E54DA766E /mnt/sdc1 ntfs-3g noauto,users,exec 0 0
/dev/disk/by-label/DATA /mnt/sdc1 ntfs-3g noauto,users,exec 0 0
but those links are not created by our udev.
@curaga: is this a configure option for udev? I didn't find a udevadm cmd to force the creation of those symlinks either... mhm.