Tagged Questions
The data-change tag has no wiki summary.
15
votes
5answers
6k views
Logging every data change with Entity Framework
There is a need from a customer to log every data change to a logging table with the actual user who made the modification. The application is using one SQL user to access the database, but we need to ...
1
vote
1answer
554 views
How to seed data with mongoid in existing rails model?
When we start a brand new rails project we use db:seed to populate db data.
During project lifetime in an ActiveRecord backed project we can use migrations to change schema and data. Mongoid doesn't ...
1
vote
1answer
72 views
Is it possible to write t-sql script to show all changes made to the database rows recently?
I'm learning a new product of my company and the database is huge.
What I'm doing is to learn feature by feature and through that to understand the codes and the associated database's ...
0
votes
1answer
417 views
Listening for dataChange event in AdvancedDataGrid
this is my code :
<controls:AdvancedDataGrid id="adg" dataChange="adg_dataChangeHandler(event)">
<!-- other stuff goes here -->
</controls:AdvancedDataGrid>
and in my ...
0
votes
1answer
245 views
Is there some database-independent way get data change notifications at the field level?
Currently, using SQL Server 2005, I poll a "windows events" database to determine changes in a table called WINDOWS_EVENTS, which has a timestamp field. Looking at the timestamp I can determine if the ...