Tagged Questions
7
votes
1answer
627 views
Change Data Capture or Change Tracking - Same as Traditional Audit Trail Table?
Before I delve into the abyss of Microsoft documentation any deeper, I'd like to know if someone experienced with Change Data Capture and Change Tracking know if one or both of these can be used to ...
2
votes
1answer
25 views
Event Mechanism in SQL Server 2008
I have a windows service that constantly queries a table in DB1 and if any changes are found in it, it transfers those changes to DB2. For that, it constantly queries the DB1.
Is there any mechanism ...
2
votes
3answers
263 views
How to compare SQL Server CDC LSN values in C#?
In SQL its easy as it supports the binary(10) LSN values for comparison:
SELECT *, __$start_lsn, __$seqval
FROM cdc.fn_cdc_get_all_changes_dbo_sometable(@startLsn, @endLsn, 'all update old')
WHERE ...
2
votes
1answer
102 views
what happens to a change-data-capture instance when the underlying table is altered?
If I enable change-data-capture for a table, and then somebody else adds a column to the table, will my capture be affected? Will I still get updates for the original columns? For the new column?
...
2
votes
1answer
309 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
473 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
18 views
Change Data Capture for several tables
SQL Server 2008.
Is it possible to create Change Data Capture (or Change Tracking)
for several related tabled in a db?
For example many-to-many relation.
How it will look like?
1
vote
2answers
120 views
Sql Server 2008 CDC Problems
I am new to CDC and want to know if there is any problem in using CDC. I am targeting to use it for audit purpose i.e. Log activity using CDC and then show the same to user when needed. Does it record ...
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
2answers
303 views
SQL Server 2008 CDC Non-responsive & Stuck After Table Dropped
I was testing out the SQL Server 2008 change data capture feature on a table when it became stuck.
There is only one table enabled for CDC.
After performing various DDL changes to the table to test ...
1
vote
1answer
574 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
1answer
145 views
Replication and CDC SQL 2008r2 what causes some replicated tables to drop CDC?
Transactional replication from SQL 2005 into SQL 2008r2. CDC established on SQL 2008r2 side. Each day, from 2 to 4 of these tables lose their CDC settings (ie. is_tracked_by_cdc in sys.tables moves ...
0
votes
1answer
175 views
How to get incremental change from SQL Server CDC
How can I get incremental change from SQL Server CDC for instance:
I have table customer on the database and any insert, update or delete will be saved on the CDC table customer.
I would like to ...
0
votes
1answer
118 views
change-data-capture from many tables via a single stored procedure?
I need to retrieve change-data-capture rows for several tables, and I'm required (by company IT policy) to access the database via stored procedures. I would rather create a single stored procedure ...
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?
...
0
votes
1answer
308 views
Materialized view or CDC?
I have a view on two tables (stored using SQL 2008) with millions of records.
CREATE VIEW VwSalesAge
AS
SELECT
Transactions.ID
,Transactions.Amount
,Customer.ID
...