I am trying to shrink a database file but am running into errors.
Using the file_id from sys.database_files works but using the logical file name yields an error.
The logical file name is the same in both statements, so that can't be the problem. Also, the database that is being connected to, is the same. The following works as expected:
declare @fileId as int = (select file_id from sys.database_files where name = 'XY')
DBCC SHRINKFILE (@fileId, 0, TRUNCATEONLY)
However, the following...
DBCC SHRINKFILE ('XY' , 0, TRUNCATEONLY)
...will result in error 8985:
Msg 8985, Level 16, State 1, Line 1
Could not locate file 'XY' for database '<my database>' in sys.database_files. The file either does not exist, or was dropped.
The logical name is just normal characters, no special characters or spaces or numbers, no umlaut etc., only upper- and lower-case characters. It's similar to "DotNetDev". Server collation is Latin1_General_CI_AS.
I am still getting the same error when executing the following lines:
DECLARE @filename sysname;
SELECT @filename = name
FROM sys.database_files
WHERE name = 'XY';
PRINT @filename;
DBCC SHRINKFILE (@filename , 0, TRUNCATEONLY);
The print statement works fine, so it seems that I am using the right logical name.