Tagged Questions
2
votes
1answer
310 views
Is Change Data Capture Performance Loss Restricted to CDC Enabled Tables?
I have read that enabling Change Data Capture obviously has an impact on database performance.
Would this performance loss only effect the tables that have CDC enabled or would it effect all actions ...
2
votes
1answer
477 views
Remove Change data capture manually
I'm having a serious problem with one of my production databases.
The database was enabled for change data capture which was performing quite well. Last month we had a server meltdown where several ...
2
votes
3answers
239 views
Using Change Data Capture for Small Desktop Applications?
A new client of mine has a small VB/Access database application written in 2002 that he wants rewritten to bring it more up to date and to support new features he has been wanting for some time. So, ...
1
vote
1answer
67 views
SQL Server 2008: How to know when a table was removed from Change Data Capture(CDC) or added to it?
SQL Server 2008 has Change Data Capture feature that allows to capture changes made in the table, such as insert, delete or update rows.
I have noticed that a table was excluded from Change Data ...
1
vote
1answer
575 views
Cannot rename a column that is “replicated”, probably due to CDC
I want to run the following rename
EXECUTE sp_rename N'dbo.Semesters.IsPublic', N'Tmp_ShowNCs', 'COLUMN'
I get the error
Msg 4928, Level 16, State 1, Procedure sp_rename, Line 547
Cannot alter ...
0
votes
2answers
138 views
SQL Server CDC(change data capture) is used just for table data change? Can I use it to track procedure or other types of objects change?
SQL Server CDC(change data capture) is used just for table data change? Can I use it to track procedure or other types of objects change?
BTW, are there some companies using CDC in their production?
...