Quantcast
Channel: SQL Server Database Engine forum
Viewing all articles
Browse latest Browse all 12963

SQL Server 2014 with (memory_optimized=on) fires Msg 12332

$
0
0

When trying to make a simple table like this:

USE myDb;
create table dbo.t1 
(c1 int not null primary key nonclustered, c2 INT)
with (memory_optimized=on)
go

In a database it works fine in another fires the error below:

Msg 12332, Level 16, State 107, Line 2
Database and server triggers on DDL statements DROP and CREATE are not supported with memory optimized tables.



Viewing all articles
Browse latest Browse all 12963

Trending Articles