{"id":15410408,"url":"https://github.com/erikej/sqlcemigrator","last_synced_at":"2025-08-03T18:32:36.943Z","repository":{"id":145680686,"uuid":"94294819","full_name":"ErikEJ/SqlCeMigrator","owner":"ErikEJ","description":"Command line tool to move your SQL Server Compact database to SQL Server","archived":false,"fork":false,"pushed_at":"2017-07-14T12:17:03.000Z","size":19,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-09T12:38:03.930Z","etag":null,"topics":["azure-sql-database","sql-server","sql-server-compact","sql-server-localdb","sql-server-migration"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ErikEJ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-14T05:59:52.000Z","updated_at":"2023-08-29T10:32:27.000Z","dependencies_parsed_at":"2023-05-31T08:45:55.362Z","dependency_job_id":null,"html_url":"https://github.com/ErikEJ/SqlCeMigrator","commit_stats":{"total_commits":16,"total_committers":3,"mean_commits":5.333333333333333,"dds":0.375,"last_synced_commit":"fb15f810e0c9b2d61d6699d9b964739226772c6e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ErikEJ/SqlCeMigrator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlCeMigrator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlCeMigrator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlCeMigrator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlCeMigrator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ErikEJ","download_url":"https://codeload.github.com/ErikEJ/SqlCeMigrator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlCeMigrator/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268594257,"owners_count":24275734,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure-sql-database","sql-server","sql-server-compact","sql-server-localdb","sql-server-migration"],"created_at":"2024-10-01T16:44:18.233Z","updated_at":"2025-08-03T18:32:36.609Z","avatar_url":"https://github.com/ErikEJ.png","language":"C#","readme":"# SqlCeMigrator\nCommand line tool to move your SQL Server Compact database to SQL Server\n\nConfigured via the App.Config file:\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\" ?\u003e\n\u003cconfiguration\u003e\n  \u003cappSettings\u003e\n    \u003c!-- Full path to the local sdf file to migrate from, for example C:\\data\\test.sdf --\u003e\n    \u003c!-- Required --\u003e\n    \u003cadd key=\"SqlCeDatabasePath\" value=\"\"/\u003e\n\n    \u003c!-- What to migrate: Data only = 0, Schema only = 1, Data \u0026 Schema = 2 --\u003e\n    \u003cadd key=\"Scope\" value=\"0\"/\u003e\n    \n    \u003c!-- If true, will rename the SQL Compact database file with date stamp --\u003e\n    \u003cadd key =\"RenameSqlCeDatabase\" value=\"true\"/\u003e\n\n    \u003c!-- If true, will remove the generated scripts from temp folder --\u003e\n    \u003cadd key =\"RemoveTempScripts\" value=\"false\"/\u003e\n\n    \u003c!-- Comma seperated list of SQL Compact tables to ignore during migration --\u003e\n    \u003cadd key =\"SqlCeTablesToIgnore\" value=\"__MigrationHistory\"/\u003e\n\n    \u003c!-- Comma seperated list of SQL Compact tables to to be appended to existing tables --\u003e\n    \u003c!-- Only applicable if Scope = 0 --\u003e\n    \u003cadd key =\"SqlCeTablesToAppend\" value=\"\"/\u003e\n\n    \u003c!-- Comma seperated list of SQL Server tables to clear (DELETE), in that order --\u003e\n    \u003c!-- Only applicable if Scope = 0 --\u003e    \n    \u003cadd key =\"SqlServerTablesToClear\" value=\"\"/\u003e\n    \n  \u003c/appSettings\u003e\n  \u003cconnectionStrings\u003e\n    \u003c!-- Connection string for SQL Server database to migrate to --\u003e\n    \u003c!-- Required --\u003e\n    \u003cadd name=\"SqlServer\" connectionString=\"\" /\u003e\n  \u003c/connectionStrings\u003e\n  \u003cstartup\u003e \n      \u003csupportedRuntime version=\"v4.0\" sku=\".NETFramework,Version=v4.5.2\" /\u003e\n  \u003c/startup\u003e\n\u003c/configuration\u003e\n````\n\n\n## Latest daily build\nYou can download a .zip file with the [latest build of the master branch from AppVeyor](https://ci.appveyor.com/api/projects/ErikEJ/SqlCeMigrator/artifacts/SqlCeMigrator.zip?branch=master)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikej%2Fsqlcemigrator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferikej%2Fsqlcemigrator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikej%2Fsqlcemigrator/lists"}