Skip to content

wit-eks/MSSqlServerDbSchemaGitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple SQL Server Db objects downloader and git pusher

It saves sql objects as sql scripts in local repo folder. Actions of downloading the schema and pushing the changes to the repo need to be scheduled. First of all the repo should be cloned to local folder. Example of use presented in SchemaPullExecutor project. There are 3 projects:

  • SchemaGetter - .NET Standard 2.0 – sql modules download and to file saver
  • GitPusher - .NET Standard 2.0 – pushing local folder changes to the remote repo
  • SchemaPullExecutor - .NET Core 2.2 – console app – an example how to utilize mentioned projects

SchemaGetter

  • generated scripts have sql module create date and last modify date
  • sql that gets modules data:
select 
	[db] = db_name(),
	[schema] = OBJECT_SCHEMA_NAME(m.object_id),
	[name] = OBJECT_NAME(m.object_id) 
	,o.type, o.type_desc
	,m.uses_ansi_nulls
	,m.uses_quoted_identifier
	,o.create_date, o.modify_date
	,m.definition
from 
	sys.sql_modules m
inner join
	sys.objects o on m.object_id = o.object_id
where 
	1=1
order by 
	o.type

GitPusher

  • Screenshots from GitKraken

first-push.png trigger-modified.png deleted-copy-of-sp.png

About

Simple SQL Server Db objects downloader and git pusher

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages