Versioning in Greenplum Database -
is doing versioning of greenplum code?
can on this, there direct tool or method can in manage version of gp ddl/code of database objects (tables, functions, views)
regards,
i've had best success of using cron job commit changes source control system git or subversion on daily basis.
--create sql file per schema in $(psql -t -a -c "select nspname pg_namespace nspname not 'pg_%' , nspname not '%toolkit' , nspname not in ('information_schema', 'madlib', 'public') order nspname;"); echo $i pg_dump -s -n $i -f $i.sql done in $(ls *.sql); #your code commit changes source control git done
Comments
Post a Comment