tool migracion datos data sql-server-2012 entity-framework-6 code-first-migrations full-text-indexing

sql server 2012 - migracion - Codifique la primera excepción de tiempo de espera de migración SQL personalizada



migracion de base de datos sql server (2)

El procesamiento de su solicitud puede tardar más tiempo que el tiempo de espera de comando predeterminado del marco de la entidad (30 segundos). Puede aumentar el tiempo de espera del comando si es necesario, como en el hilo a continuación.

Entidades temporales del marco de la entidad

Estoy tratando de crear un índice de TEXTO COMPLETO usando Entity Framework Migration ejecutando un SQL personalizado.

Mi clase de migración se ve así:

public partial class DocumentContentFullTextIndex : DbMigration { public override void Up() { AlterColumn("dbo.Attachments", "ContentType", c => c.String(maxLength: 260)); Sql("CREATE FULLTEXT CATALOG FullTextIndexes AS DEFAULT;", true); Sql(@"CREATE FULLTEXT INDEX ON [Attachments]( Content TYPE COLUMN ContentType Language ''ENGLISH'' ) KEY INDEX [PK_dbo.Attachments] ON FullTextIndexes;", true); } public override void Down() { AlterColumn("dbo.Attachments", "ContentType", c => c.String(maxLength: null)); Sql("DROP FULLTEXT INDEX ON [Attachments]"); Sql("DROP FULLTEXT CATALOG FullTextIndexes"); } }

Cuando lo ejecuto desde el estudio de administración MSSQL, todo es perfecto y SQL hizo exactamente lo que se espera de él.

Pero cuando se ejecuta desde el proyecto de migración, la segunda solicitud de SQL dispara la excepción

Tiempo agotado. El período de tiempo de espera transcurrido antes de la finalización de la operación o el servidor no responde.

Rastreo de pila completa con el indicador -Verbose:

Update-Database -ConnectionStringName DatabaseContext -Verbose Using StartUp project ''Lx2''. Using NuGet project ''Database.Model''. Specify the ''-Verbose'' flag to view the SQL statements being applied to the target database. Target database is: ''Lx2'' (DataSource: ., Provider: System.Data.SqlClient, Origin: Explicit). Applying explicit migrations: [201406050348083_AttachmentsContentFullTextIndex]. Applying explicit migration: 201406050348083_AttachmentsContentFullTextIndex. ALTER TABLE [dbo].[Attachments] ALTER COLUMN [ContentType] [nvarchar](260) NULL CREATE FULLTEXT CATALOG FullTextIndexes AS DEFAULT; CREATE FULLTEXT INDEX ON [Attachments]( Content TYPE COLUMN ContentType Language ''ENGLISH'' ) KEY INDEX [PK_dbo.Attachments] ON FullTextIndexes; System.Data.SqlClient.SqlException (0x80131904): Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. ---> System.ComponentModel.Win32Exception (0x80004005): The wait operation timed out at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.<NonQuery>b__0(DbCommand t, DbCommandInterceptionContext`1 c) at System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch[TTarget,TInterceptionContext,TResult](TTarget target, Func`3 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed) at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.NonQuery(DbCommand command, DbCommandInterceptionContext interceptionContext) at System.Data.Entity.Internal.InterceptableDbCommand.ExecuteNonQuery() at System.Data.Entity.Migrations.DbMigrator.ExecuteSql(DbTransaction transaction, MigrationStatement migrationStatement, DbInterceptionContext interceptionContext) at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.ExecuteSql(DbTransaction transaction, MigrationStatement migrationStatement, DbInterceptionContext interceptionContext) at System.Data.Entity.Migrations.DbMigrator.ExecuteStatementsInternal(IEnumerable`1 migrationStatements, DbTransaction transaction, DbInterceptionContext interceptionContext) at System.Data.Entity.Migrations.DbMigrator.ExecuteStatementsInternal(IEnumerable`1 migrationStatements, DbConnection connection) at System.Data.Entity.Migrations.DbMigrator.<>c__DisplayClass30.<ExecuteStatements>b__2e() at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.<>c__DisplayClass1.<Execute>b__0() at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute[TResult](Func`1 operation) at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute(Action operation) at System.Data.Entity.Migrations.DbMigrator.ExecuteStatements(IEnumerable`1 migrationStatements, DbTransaction existingTransaction) at System.Data.Entity.Migrations.DbMigrator.ExecuteStatements(IEnumerable`1 migrationStatements) at System.Data.Entity.Migrations.Infrastructure.MigratorBase.ExecuteStatements(IEnumerable`1 migrationStatements) at System.Data.Entity.Migrations.DbMigrator.ExecuteOperations(String migrationId, XDocument targetModel, IEnumerable`1 operations, IEnumerable`1 systemOperations, Boolean downgrading, Boolean auto) at System.Data.Entity.Migrations.DbMigrator.ApplyMigration(DbMigration migration, DbMigration lastMigration) at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.ApplyMigration(DbMigration migration, DbMigration lastMigration) at System.Data.Entity.Migrations.DbMigrator.Upgrade(IEnumerable`1 pendingMigrations, String targetMigrationId, String lastMigrationId) at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.Upgrade(IEnumerable`1 pendingMigrations, String targetMigrationId, String lastMigrationId) at System.Data.Entity.Migrations.DbMigrator.UpdateInternal(String targetMigration) at System.Data.Entity.Migrations.DbMigrator.<>c__DisplayClassc.<Update>b__b() at System.Data.Entity.Migrations.DbMigrator.EnsureDatabaseExists(Action mustSucceedToKeepDatabase) at System.Data.Entity.Migrations.Infrastructure.MigratorBase.EnsureDatabaseExists(Action mustSucceedToKeepDatabase) at System.Data.Entity.Migrations.DbMigrator.Update(String targetMigration) at System.Data.Entity.Migrations.Infrastructure.MigratorBase.Update(String targetMigration) at System.Data.Entity.Migrations.Design.ToolingFacade.UpdateRunner.Run() at System.AppDomain.DoCallBack(CrossAppDomainDelegate callBackDelegate) at System.AppDomain.DoCallBack(CrossAppDomainDelegate callBackDelegate) at System.Data.Entity.Migrations.Design.ToolingFacade.Run(BaseRunner runner) at System.Data.Entity.Migrations.Design.ToolingFacade.Update(String targetMigration, Boolean force) at System.Data.Entity.Migrations.UpdateDatabaseCommand.<>c__DisplayClass2.<.ctor>b__0() at System.Data.Entity.Migrations.MigrationsDomainCommand.Execute(Action command) ClientConnectionId:3d298f0a-e2dc-4976-8587-c69d03b23c6b Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

Intenté copiar todo el SQL de la salida de Verbose exactamente ''como está'' y ejecutarlo directamente en Management Studio y funciona exactamente como se esperaba sin errores.

¿Alguna idea de cómo se puede arreglar esto?

Algo extraño también es que si pongo el código de cambio de longitud máxima de ContentType

AlterColumn("dbo.Attachments", "ContentType", c => c.String(maxLength: 260));

en el archivo de migración por separado todo funciona también bien.

ACTUALIZAR:

Después de shivakumar consejo de shivakumar , intenté aumentar el tiempo de espera de conexión (hasta 5 minutos) en la configuración de migración y esto aumentó el tiempo antes de que recibiera la "excepción de tiempo de espera", pero el problema sigue ahí.


Use el archivo Configuration.cs para establecer un tiempo de espera personalizado:

internal sealed class Configuration : DbMigrationsConfiguration<ApplicationDbContext> { public Configuration() { AutomaticMigrationsEnabled = false; ContextKey = "YourDbContext"; // New timeout in seconds this.CommandTimeout = 60 * 5; } }