|
Change Data Capture is a new feature in SQL Server 2008. From MSDN:
Change data capture provides historical change information for a user table by capturing both the fact that DML changes were made and the actual data that was changed. Changes are captured...
Started by MusiGenesis on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also use materializedI believe Oracle has provided auditing features since 8i, however the tables used to capture the data are rather....
That are then built on top of LogMiner including Change Data Capture and Streams .
|
|
I have a program that captures live data from a piece of hardware on a set interval. The data is returned as XML. There are several things I would like to do with this data (in order): -display it to user -save it to disk -eventually, upload it to database...
Started by john on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're never using the locally stored data except to upload it to the database and parsing takes a few for the data fetching and the processing....
If you have to upload.
That mostly depends on the amount and rate of data you're moving.
|
|
Is there a way to capture only the data layer and disregard the upper layers in wireshark? If not, is there a different packet dump utility that can do this? PREFERABLY 1 file per packet!
What I am looking for: A utility that dumps only the data (the ...
Started by Zombies on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can limit amount of ....
data layer?
There is a function to limit capture size in Wireshark, but it seems that 68bytesWhat do you mean by "data layer"? Can you post a short example of a packet with and one without into tcpdump.
|
Ask your Facebook Friends
|
Hi,
I'm developing a gateway script that needs to send info to another provider's server, and I need to debug the code.
Is there a way, on my own Linux + Apache + PHP server to capture the CURL / XML data from this script?
I know with PHP, that I could...
Started by Rudi on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Echo htmlentities(file_get_contents('http://intranet/capture.php'));
I'm not sure if this is what you mean but it does the same as curl (sort of)
You want to see the output of curl
$ch = curl_init(); // initialize curl handle... .
What you can try is this.
|
|
Hello,
How would it be possible to capture the audio programmatically? I am implementing an application that streams in real time the desktop on the network. The video part is finished. I need to implement the audio part. I need a way to get PCM data ...
Started by Terminus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You simply select this as the input rather than....
Some sound cards have a loopback interface - Creative calls it "What U Hear" .
I don't think there is a direct way to do this using the OS - it's a feature that may (or may not) be present on the sound card .
|
|
I want to access the audio data that my microphone is recording with Java. How would I do that?
My goal is to save the audio data that is recorded and simultaneously play it to the user.
Started by Janusz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This optional package, which can capture, playback, stream, and transcode multiple media formats, extends.
|
|
I need a regular expression that can capture the data from a description like this:
14Kt Yellow Gold Mothers Ring Style 152, Genuine Amethyst,Genuine Diamond,Simulated Emerald,Premium Topaz,Premium Tourmaline,Genuine Sapphire, Engravings: jim,jake,john...
Started by John Isaacks on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Sometimes.
If the order of the data might vary between descriptions (e.g.
It's not always appropriate.
|
|
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, I'm going to convert it over to use C#.NET 2008 and ...
Started by Lusid on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've used my own change-data-tracking system.
Use them layer on a transparent data audit history mechanism without any impact to the main codebase and then never have to mess with the individual triggers again.
|
|
I am new to programming and learning with Wordpress.
the_title(); //outputs the title of the page
I want to capture the title of the page into a string variable so I can manipulate it with strtolower and str_replace functions.
The only way I have gotten...
Started by chris on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A blog is a really simple set of data (even moreso in WP's case because it isn't fully.
It's the difference between f1 of things.
Will have to use output buffering if you want to capture the output.
|
|
I am looking for an algorithm that determines percentiles for live data capture.
For example, consider the development of a server application.
The server might have response times as follows: 17 ms 33 ms 52 ms 60 ms 55 ms etc.
It is useful to report ...
Started by binarycoder on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
That implies that you must apply some sort of rebinning scheme binning my data"? There are lots ....
If you want to keep the memory usage constant as you get more and more data, then you're going to have to resample that data somehow.
|