blob: 9c91d0c67002bf78fd4baec597600d7d4b3c5056 (
plain)
1
2
3
4
5
6
7
8
|
cd /opt/app/cass_backup
DATA="ns role perm ns_attrib user_role cred cert x509 delegate approval approved future notify artifact health history"
PWD=cassandra
CQLSH="cqlsh -u cassandra -k authz -p $PWD"
for T in $DATA ; do
echo "Creating $T.dat"
$CQLSH -e "COPY authz.$T TO '$T.dat' WITH DELIMITER='|'"
done
|