我正在尝试通过迁移刚创建的实体在sql服务器中创建表,但是在执行查询时会引发异常:
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.
通过使用制造商捆绑包,我创建了一个新的User实体
我进行了迁移:
$ php bin /控制台make:migration
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,并对三个查询进行了一项一项的测试。前两个仅能找到工作,但第三个却失败了,所以我按照@sepupic所说的进行了工作。
有人可以解释为什么我使用maker-bundle进行迁移时出现以下查询:
$this->addSql('EXEC sp_addextendedproperty N\'MS_Description\', N\'(DC2Type:json)\', N\'SCHEMA\', \'dbo\', N\'TABLE\', \'[user]\', N\'COLUMN\', roles');
不显示用户而不是 [用户] ?
最终解决方案 似乎“用户”是一个保留字,因此我将类重构为其他名称,并且从头到尾都很好用
答案 0 :(得分: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]'
答案 1 :(得分:0)
问题是'user'是sql server中的保留字,因此我将类重构为其他名称,并且从头到尾都很好用