I am trying to manually clean the change tracking tables within SQL Server 2017.
I run the command
exec sp_flush_CT_internal_table_on_demand 'mydb.data.foobar'
Error message:
Msg 2501, Level 16, State 1, Procedure sys.sp_MSflush_CT_internal_table_on_demand, Line 22 [Batch Start Line 40]
Cannot find a table or object with the name "mydb.data.foobar". Check the system catalog.
The table 'mydb.data.foobar' does exist.
The following successfully returns:
select object_id('mydb.data.foobar')
Anyone ever manually clean CT ?