CDC may refer to the Communication Device Class (or USB CDC). Also may refer to Change Data Capture in Microsoft SQL Server. Also may refer to Connected Device Configuration in Java ME.

learn more… | top users | synonyms

1
vote
0answers
15 views

What to use: Change Data Capture or Materialized View?

Objective: I want to replicate table from one oracle DB to another asynchronously. Please advice, which one of the two, Change Data Capture or Materialized View , is better option with benefit ...
1
vote
0answers
15 views

Get cdc tables in visual studio 2012/2010 database project

I am trying to create a database project in Visual Studio 2012/2010 where I need the CDC tables , because lot of my views are dependent on the CDC tables. I couldn't find any way to import the cdc ...
0
votes
0answers
23 views

Can I recover CDC tables from transaction logs? [migrated]

Is there anyway to restore CDC tables from transaction logs? My basic understanding is that CDC reads these logs, and entries that are specially marked, are grabbed by CDC. Once this has happened ...
-1
votes
1answer
20 views

Content Defined Chunking (CDC) algorithm in C++

I need to split a file into chunks. I find algorithms to split files into a fix size blocks. But This is not I need. What I need is the file needs to be split into chunks that the file is composed of. ...
0
votes
1answer
52 views

An insufficient number of arguments were supplied for the procedure or function cdc.fn_cdc_get_all_changes_

Seemingly valid code for querying the latest tracked changes in the table Fields: DECLARE @Begin_LSN BINARY(10), @End_LSN BINARY(10) SET @Begin_LSN = sys.fn_cdc_get_min_lsn('Fields') SET @End_LSN = ...
0
votes
1answer
27 views

Scalar function fn_cdc_get_min_lsn() constantly returns '0x00000000000000000000' for valid table names?

I have Change Data Capture (CDC) activated on my MS SQL 2008 database and use the following code to add a new tabel to the data capture: EXEC sys.sp_cdc_enable_table @source_schema ='ordering', ...
0
votes
0answers
15 views

Need Best Approaches for Horizantal Table Partition

I would like to do Table Partition on table which we are using from last 8 years.Looking for the Best Approaches for Table Partition a .Without losing the existing data b. Without losing ...
1
vote
1answer
47 views

Exclude Specific Updates from Change Data Capture

I have a proof of concept application which monitors its database for changes using Change Data Capture and transmits these changes using a service bus. The application also receives notifications ...
0
votes
0answers
11 views

CDC Change Data Capture Looping of Tables in Dataflow

I am working with a new project that needs CDC features. Working in between I have encountered some problems. 1) Do we need 'n' number of Data flow tasks if we have 'n' number of tables? 2) Can we ...
1
vote
0answers
77 views

CDC Driver on MAC OS X - Device always busy

I am writing an application to control a Modem via USB Virtual COM port on Win7, WinXP, MAC OS X and Linux (command line) and I use as USB to serial converter (aka Virtual COM Port) a Freescale ...
0
votes
0answers
197 views

Change Data Capture in SQL Server 2012

Am trying to get the net changes on CDC enabled table by passing Min and Max dates. But is throwing below error. Msg 313, Level 16, State 3, Line 24 An insufficient number of arguments were supplied ...
1
vote
3answers
131 views

Auditing in Database or Application

I need to audit modification actions (create/delete/update) in an enterprise web application. Then the user may need to see history of changes of a specific entity (a Person for example) to decide to ...
0
votes
2answers
182 views

SSIS CDC Control Task

Am doing a proof of concept for usage of SSIS CDC component. For initial load: What I got so far is step 1: CDC Control Task with CDC Control Operation as : Mark Initial load start step 2: Data ...
1
vote
1answer
52 views

Java ME Triple Store

I'm currently coding a Java ME program that has an internal OWL reasoning engine (Hermit & Pellet) and receives ontology data (sensor data) from a backend server. Sometimes this data is also ...
1
vote
1answer
193 views

USB CDC on Windows 8 RT

Can a Windows Store Application communicate with a USB-connected device through a virtual COM Port? Does the framework for such apps contain the SerialPort class? If not, in what other way can I ...
3
votes
1answer
145 views

Virtual COM Communications Issue

I'm working on a Communications Device Class (CDC) driver for an embedded device, a Full Speed implementation of USB 2.0. The COM port settings are 115200, 8-bit, no parity, 1 stop bit, no flow ...
0
votes
1answer
89 views

store cdc history data in custom tables/another database

I want to store "change data capture" history rows in another database/table. How can I implement this? Should I use own service, which looking for cdc tables and copy rows? Can I use SSIS cdc package ...
1
vote
0answers
59 views

QR Code ActiveX Control: The Position of the control is different when Printing

I had tried to google for many keys like COleControl, IOleInPlaceSite.... But I still have no idea for this. I know when activex control is inactive,the container won't create window for the activex ...
0
votes
0answers
58 views

usb virtual port com : set_line_coding result eoverflow

I have a problem to establich connection between pc (usb host on windows xp sp2) and my electronic board (usb device under development). I would like emulate a com port. My current state is : - I use ...
0
votes
1answer
168 views

Linux cdc_acm device - unexpected characters sent to device

I'm having trouble with unexpected characters being sent on a USB port with the cdc_acm driver. What makes this all the more perplexing is that the code runs fine on Ubuntu 12.04 (3.2 kernel) but ...
0
votes
0answers
74 views

How to use Microsoft SQL Server 2008 R2 CDC with a SQL source and an Oracle target

We are considering getting rid of one CDC software and replacing it with Microsoft SQL Server 2008 R2 Native CDC. I have viewed many articles/videos about setting it up, but none of them mention ...
1
vote
0answers
25 views

CDC not enabled when using login account with sysadmin roles

I get an error when trying to enable CDC on one of our SQL2012 instances, when using a login account that is a member of the sysadmin fixed server role. Procedure sp_cdc_enable_db_internal, ...
1
vote
1answer
157 views

HOWTO: Interpret the MSSQL CDC “__$update_mask” field

Since I had great difficulties how to work with the "$update_mask" field (I don't want to call fn_cdc_is_bit_set for performance reasons), here is the C# code: updateMask is the contents of the ...
2
votes
2answers
157 views

Change Data Capture with table joins in ETL

In my ETL process I am using Change Data Capture (CDC) to discover only rows that have been changed in the source tables since the last extraction. Then I do the transformation only for this rows. The ...
0
votes
1answer
108 views

Why SelectObject is called twice?

I read code in MFC, but was confused with the code below: void EditView::ResetDefaultFont() { HFONT hFont = (HFONT)::GetStockObject(DEFAULT_GUI_FONT); CDC* pDC = GetDC(); CFont* ...
0
votes
0answers
32 views

Is there a way to get a list of all changes performed in a database within a given time frame using CDC?

I am wanting to mimic the steps taken by another system's GUI. For example, if I were trying to trace all the transactional steps taken when a user clicks the "Order Now" button I'd expect to see ...
0
votes
2answers
243 views

What USB class does Serial COM Port use?

What is the name of the USB class which handles communication with USB devices which appear as COM ports in Window's device manager? For linux (at least for Fedora 17 and Ubuntu 12.04) these ports ...
0
votes
1answer
257 views

Detect USB CDC device connection/disconnection using Java and RXTX

I have an application that can run either with or without a USB CDC device attached to the machine. This device is programmed to respond to a question with a specific answer so I can detect which ...
0
votes
0answers
162 views

MFC Convert CBitmap screenshot into RGB pointer for WebP image encoding

I'm working on some software to encode screen capture images into webp format, but have ran into some strange difficulties. Here is my webp wrapper class: #pragma once #include "stdafx.h" #include ...
0
votes
2answers
205 views

USB CDC device stalling

I'm writing a simple virtual serial port device to report an older serial port. By this point I'm able to enumerate the device and send/receive characters. After a varying number of bulk-out ...
0
votes
1answer
185 views

Find Pixel value in picture control to draw a graph

I am creating a project similar to task manager, Now I want to draw a graph to that show cpu usage. My problem is that I dont have any knowledge about painting in vc++, but my idea is that I should ...
0
votes
1answer
150 views

Unable to restart CDC after making table changes

I need to add a couple of columns to CDC for a table that is already being tracked. My approach is as follows: EXEC sys.sp_cdc_drop_job 'capture' BEGIN TRANSACTION BEGIN TRY -- Copy existing ...
0
votes
0answers
159 views

Creating CDC system table SQL Server 2008 [closed]

I am facing problem with CDC tables in my database. I think few of these tables are damaged and are not capturing any audit information. I tried to disable CDC on these tables, but that did not work ...
1
vote
1answer
113 views

How to get the “start_lsn” value in application code

The database tracks all changes via the "Change Data Capture" mechanism. I need to add additional information about users who make these changes. The following users are not SQL Server users. Security ...
0
votes
1answer
101 views

what's the color of interior of ellipse?

In MFC: If I use CBrush like "CBrush brush; CDC* pDC = GetDC();pDC->Ellipse(start.x,start.y,end.x,end.y);", what color of the ellipse's interior will be?
0
votes
3answers
273 views

Why function Ellipse(…) are needed twice here to draw an ellipse?

MFC: I read this code which is to draw an ellipse (not solid interior), but I cannot understand why function "pDC->Ellipse(...)" is needed twice here? (sol == 0, and do_what==DRAW_ELLIPSE) void ...
2
votes
1answer
195 views

Export content of a CDC window to a EMF file

I am new to C++ and OpenGL. There is this C++ application someone wrote before (based on Linux), and I have to tweak it. Basically in this application, there is a window containing a plot. Now this ...
0
votes
2answers
524 views

CreateCompatibleBitmap Vs SelectObject

I'm wondering , if I want to create different bitmaps, I use the CreateCompatibleBitmap function again and again, to associate it to the same memory CDC. is it the same meaning that I CreateBitmap ...
1
vote
2answers
318 views

SSIS - How can I use Bids to debug parent/child packages?

I have some packages that are being used to load a data warehouse db using SQL CDC. The design is roughly based on the codeplex example solution for using CDC. The basic structure consists of a ...
8
votes
3answers
226 views

How do I reconstruct a historical view?

I am currently exploring Change Data Capture as an option to store temporal databases. It is great because it stores only the deltas and seems like it may solve my problem. When I enabled CDC, a bunch ...
2
votes
1answer
145 views

Writing a windows class driver

I'm new to WDM driver development, but I have an experience developing Linux drivers. i want to develop Ethernet over USB class driver for windows XP. (CDC-ECM class driver) i know that windows only ...
0
votes
1answer
472 views

How to use BCP to dump query (cdc function ) retrieved data to text file

Im trying to use BCP to dump data from CDC function into a .dat file. Im using the following query (which works in Server 2008 R2): USE LEESWIJZER DECLARE @begin_time datetime , @end_time datetime , ...
0
votes
0answers
172 views

Filter Change Data Capture

I use SQL Server 2008 R2 and enable CDC for multi tables on my database. and want to filter capturing data. for example I want to capture data only when Column1 of my table updated. also when enable ...
0
votes
2answers
299 views

Change Data Capture and SQL Server Analysis Services

I'm designing a database application where data is going to change over time. I want to persist historical data and allow my users to analyze it using SQL Server Analysis Services, but I'm struggling ...
0
votes
0answers
267 views

How to work with excel files on J9 VM

I'm creating a CDC app for an Intermec CK3 Mobile Computer in NetBeans and I have to work with .xls files using jexcelapi but I get an error when I try to run the app on the device: Exception in ...
0
votes
1answer
255 views

How to move CDC tables to a new file group?

I'm new to SQL Server, replication and concept of CDC. I did few primer tutorials for CDC. My problem is like - Because CDC is generating so much data and taking up so much space(memory), we need to ...
0
votes
1answer
258 views

Preventing update loops for multiple databases using CDC

We have a number of legacy systems that we're unable to make changes to - however, we want to start taking data changes from these systems and applying them automatically to other systems. We're ...
0
votes
2answers
172 views

CDC or Oracle JavaME Embbed Client resources for MIPS

I was asked to run a Java virtual machine on a Broadcom MIPS board and was very glad to find the OJEC cvm binary for MIPS from Oracle. Unfortunately, it seems that the binary wasn't built for my board ...
4
votes
2answers
51 views

Why is CDC based on older versions of Java, instead of being a subset of current SE?

When programming in CDC I'm always reinventing the wheel, re-implementing stuff like Arrays.toString(Object[]). Why is it this way? Couldn't CDC (and FP, PBP, etc) be a subset of the current edition ...
1
vote
1answer
260 views

Standard COM port commands for Atmel's microchips CDCs

I'm trying to use an AT90USB162 Atmel chip as a Communication Device Class (CDC) for communicating some external sensors to some Windows applications. In Atmel Application Notes site for this chip I ...

1 2