About 33,200 results
Open links in new tab
  1. Applying Migrations - EF Core | Microsoft Learn

    Oct 29, 2024 · SQL scripts can be used in conjunction with a deployment technology, and can even be generated as part of your CI process. SQL scripts can be provided to a DBA, and can be managed …

  2. entity framework - Can I generate script of a migration with EF code ...

    Good tip, or in CMD: dotnet ef migrations script > script.sql. New syntax of out-file will be --output ./script.sql. You can also generate a script to rollback a migration by reversing the parameters to …

  3. Using Migration Scripts in Database Deployments - Simple Talk

    Jun 17, 2014 · A SQL migration script is similar to a SQL build script, except that it changes a database from one version to another, rather than builds it from scratch. Although they're simple in essence, it …

  4. Database Migration — Writing Scripts & Best Practices - Medium

    Sep 9, 2019 · Migration scripts are of two types: Automated Migration Script — this is a script generated by a synchronization tool such as SQL Compare and normally checked, and perhaps altered, by a...

  5. Generate SQL Script in Entity Framework Core

    Here you will learn how to generate a SQL script from the EF Core model using a migration which you can use to execute manually or add to the source control. In the previous Migrations chapter, we …

  6. How to Generate Migration Scripts with EF Code First in .NET Core ...

    Nov 19, 2025 · One critical task in database development is generating migration scripts—SQL scripts that update the database schema to match changes in your entity model. For developers migrating …

  7. Writing SQL Scripts for Data Migration - Datatas

    **SQL scripts** play a pivotal role in this process, enabling database administrators and developers to efficiently handle large volumes of data. In this article, we explore effective strategies for writing SQL …

  8. Generate a migration script - docs.devart.com

    Oct 17, 2025 · Separate SQL files for each object, organized into folders by object type. After generating the script, you can commit the files to your version control repository using any supported version …

  9. How to Generate a Migration Script in SQL Server - Axial SQL

    Apr 11, 2025 · By following these steps, you can easily generate a migration script in SQL Server to move specific objects along with their dependencies and data to another database.

  10. Generate scripts for SQL Server object migration

    Jun 1, 2009 · SQL Server Management Studio provides an efficient and reliable wizard to generate scripts to transfer objects along with their dependencies as well as the data. In this example, let’s …