sql server - Cannot enable Full-Text search on Azure SQL Database V12 -
i'm trying enable full-text search on azure sql database. upgraded db v12 standard instance. upgrade has got completed successfully. because status says "online" on portal. however, when execute command below,
create fulltext catalog ftcatalog default;
it throws error saying,
msg 9972, level 16, state 100, line 2 database not started or not in online state. try full-text ddl command again after database started , becomes online.
i following blog post
what wrong?
executing below 2 statements connecting database fixes if in case want avoid round trip of communicating msft.
alter database [dbname] set read_committed_snapshot off rollback immediate alter database [dbname] set read_committed_snapshot on rollback immediate
Comments
Post a Comment