Tagged Questions
2
votes
1answer
27 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
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
478 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 ...
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
253 views
SQL 2008 Change Data Capture Query Performance Issue (SP vs. straight query)
Before I open a ticket with Microsoft Support, I thought I'd try the community!
I have an application in development for which we are using Change Data Capture in SQL 2008 R2 (developer edition, ...
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
1answer
309 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
...