I am using asp.net wth linq and my backend is mssql.

i want to keep history about ant changes happened in database.

please help me

table script

CREATE TABLE [dbo].[Band_Level](
    [band_level_id] [int] IDENTITY(1,1) NOT NULL,
    [band_level_name] [varchar](50) COLLATE Latin1_General_CI_AI NULL,
    [description] [varchar](100) COLLATE Latin1_General_CI_AI NULL,
    [Display_name] [varchar](100) COLLATE Latin1_General_CI_AI NULL,
    [Sorting] [varchar](50) COLLATE Latin1_General_CI_AI NULL,
    [modified_by] [int] NULL,
    [modified_date] [datetime] NULL,
 CONSTRAINT [PK_Band_Level] PRIMARY KEY CLUSTERED 
(

i want to show this history in .aspx page

link|improve this question

55% accept rate
changes on data or on schema ? – Aristos Feb 22 at 12:32
Which version of SQL are you using? If you're using SQL 2008 there are some useful ideas in this question: stackoverflow.com/questions/3875078/… – Dommer Feb 22 at 14:01
2  
This is an overly general question. Have you tried anything? Is there a direction you're thinking about taking? Doesn't seem like much due diligence before asking for help. – swannee Feb 23 at 2:05
feedback

1 Answer

if i understand you correctly then your Question is outside of the topic because if you want to keep track of what you've done in database that should be done programmatically Or with triggers by storing every thing on DUI(Delete,Update,Insert).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.