to recreate it
and it shows this error
There is already an object named in the database
what should I do ?
(also dropped the database and recreated it and
when I tried to create that table
still shows this error)
What’s the source of your backup?
you mean sql script ?
use h5p; drop table cached_assets; create table cached_assets ( cached_id int not null, cached_type varchar(200) not null, path varchar(200) not null, index cached_assets (cached_id, cached_type) );
I guess I’m asking what the source of the data is because sometimes SQL Server can think a database exists if a file with the right filename happens to be in the right directory. I’m just trying to make sure that this isn’t the case.
I don't think so btw I'm using sql server in linux
Just check the path and see if u have anyfile with the same name or not, he is asking about your source of mdf ldf files, just check the path
found it, it seems I was trying to create index with name of that table and it can't be happen
Wow. Complete missed that one. Nice catch.
Обсуждают сегодня