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 2Database and server triggers on DDL statements DROP and CREATE are not supported with memory optimized tables.