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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -