【问题标题】:Error when making a migration on doctrine在学说上进行迁移时出错
【发布时间】:2018-11-20 20:37:45
【问题描述】:

我正在尝试通过对刚刚创建的实体进行迁移来将表创建到 sql server 中,但是在执行查询时会引发异常:

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties are not permitted on 'dbo.[user].roles', or the object does not exist.

通过使用 maker-bundle 我创建了一个新的用户实体

我进行了迁移:

$ php bin/console make:迁移

  Success!


 Next: Review the new migration "src/Migrations/Version20181121121145.php"
 Then: Run the migration with php bin/console doctrine:migrations:migrate
 See https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html

那么迁移的时候迁移:

$ php bin/console doctrine:migrations:migrate

                    Application Migrations


WARNING! You are about to execute a database migration that could result in schema changes and data loss. Are you sure you wish to continue? (y/n)y
Migrating up to 20181121121145 from 0

  ++ migrating 20181121121145

     -> CREATE TABLE [user] (id INT IDENTITY NOT NULL, username NVARCHAR(180) NOT NULL, roles VARCHAR(MAX) NOT NULL, password NVARCHAR(255) NOT NULL, email NVARCHAR(255) NOT NULL, PRIMARY KEY (id))
     -> CREATE UNIQUE INDEX UNIQ_8D93D649F85E0677 ON [user] (username) WHERE username IS NOT NULL
     -> EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', 'dbo', N'TABLE', '[user]', N'COLUMN', roles
Migration 20181121121145 failed during Execution. Error An exception occurred while executing 'EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', 'dbo', N'TABLE', '[user]', N'COLUMN', roles':

SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties are not permitted on 'dbo.[user].roles', or the object does not exist.

In DBALException.php line 187:

  An exception occurred while executing 'EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', '
  dbo', N'TABLE', '[user]', N'COLUMN', roles':

  SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties
   are not permitted on 'dbo.[user].roles', or the object does not exist.


In SQLSrvException.php line 57:

  SQLSTATE [42000, 15135]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Object is invalid. Extended properties
   are not permitted on 'dbo.[user].roles', or the object does not exist.


doctrine:migrations:migrate [--write-sql [WRITE-SQL]] [--dry-run] [--query-time] [--allow-no-migration] [--configuration [CONFIGURATION]] [--db-configuration [DB-CONFIGURATION]] [--db DB] [--em EM] [--shard SHARD] [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [-e|--env ENV] [--no-debug] [--] <command> [<version>]

迁移文件如下:

//Version20181121121145.php
<?php declare(strict_types=1);

namespace DoctrineMigrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

/**
 * Auto-generated Migration: Please modify to your needs!
 */
final class Version20181121121145 extends AbstractMigration
{
    public function up(Schema $schema) : void
    {
        // this up() migration is auto-generated, please modify it to your needs
        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mssql', 'Migration can only be executed safely on \'mssql\'.');

        $this->addSql('CREATE TABLE [user] (id INT IDENTITY NOT NULL, username NVARCHAR(180) NOT NULL, roles VARCHAR(MAX) NOT NULL, password NVARCHAR(255) NOT NULL, email NVARCHAR(255) NOT NULL, PRIMARY KEY (id))');
        $this->addSql('CREATE UNIQUE INDEX UNIQ_8D93D649F85E0677 ON [user] (username) WHERE username IS NOT NULL');
        $this->addSql('EXEC sp_addextendedproperty N\'MS_Description\', N\'(DC2Type:json)\', N\'SCHEMA\', \'dbo\', N\'TABLE\', \'[user]\', N\'COLUMN\', roles');
    }

    public function down(Schema $schema) : void
    {
        // this down() migration is auto-generated, please modify it to your needs
        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mssql', 'Migration can only be executed safely on \'mssql\'.');

        $this->addSql('CREATE SCHEMA db_accessadmin');
        $this->addSql('CREATE SCHEMA db_backupoperator');
        $this->addSql('CREATE SCHEMA db_datareader');
        $this->addSql('CREATE SCHEMA db_datawriter');
        $this->addSql('CREATE SCHEMA db_ddladmin');
        $this->addSql('CREATE SCHEMA db_denydatareader');
        $this->addSql('CREATE SCHEMA db_denydatawriter');
        $this->addSql('CREATE SCHEMA db_owner');
        $this->addSql('CREATE SCHEMA db_securityadmin');
        $this->addSql('CREATE SCHEMA dbo');
        $this->addSql('DROP TABLE [user]');
    }
}

提前致谢。

第一个解决方案:

我打开了SQL Server Management Studio,对三个查询一一进行了测试。前两个工作只是 find 但第三个失败了,所以我按照@sepupic 所说的做了,它工作了。

谁能解释一下为什么当我使用 maker-bundle 进行迁移时,以下查询:

$this->addSql('EXEC sp_addextendedproperty N\'MS_Description\', N\'(DC2Type:json)\', N\'SCHEMA\', \'dbo\', N\'TABLE\', \'[user]\', N\'COLUMN\', roles');

不显示 user 而不是 [user]

最终解决方案 似乎“用户”是一个保留字,所以我将这个类重构为一个不同的名称,它从头到尾都工作得很好

【问题讨论】:

  • >>>有人能解释一下为什么当我使用 maker-bundle 进行迁移时,下面的查询: din't show user instead of [user]?user 是关键字广告放在括号中
  • 现在,当我尝试将数据插入到表中时,它会抛出:执行'INSERT INTO user (username, roles, password, email) VALUES (?, ?, ?, ?)'时发生异常with params ["felipito", "[]", "canelo123", "fpcanelo@ati.cu"]: SQLSTATE [42000, 156]: [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]附近有不正确的语法关键字“用户”。 SQLSTATE [42000, 8180]:[Microsoft][ODBC Driver 17 for SQL Server][SQL Server]无法准备语句。也许给出的解决方案与此有关? @sepupic
  • 对于 INSERT,必须在括号内包含表名,因为它是关键字:INSERT INTO dbo.[user] ...

标签: php sql-server symfony doctrine symfony4


【解决方案1】:

您的代码应如下所示:

EXEC sp_addextendedproperty N'MS_Description', N'(DC2Type:json)', N'SCHEMA', 'dbo', N'TABLE', 'user', N'COLUMN', 'roles'

错误告诉您对象 'dbo.[user].roles' 不存在,实际上您的对象是 'dbo.user.roles' 没有括号,所以你应该使用'user'作为你的表格的参数,而不是'[user]'

【讨论】:

  • 我做了我在问题底部解释的事情,它奏效了。谢谢@sepupic
【解决方案2】:

问题是 'user' 是 sql server 中的保留字,所以我将类重构为不同的名称,它从头到尾都工作得很好

【讨论】:

    猜你喜欢
    • 2017-04-09
    • 2016-10-11
    • 2022-09-28
    • 1970-01-01
    • 1970-01-01
    • 2020-09-04
    • 1970-01-01
    • 2021-09-03
    • 1970-01-01
    相关资源
    最近更新 更多