How to Design

  • Hi

    I am developing application in Asp.net 2.0? In my application there is one Page of Customer Satisfaction Feedback Form?

    I have to design database for this? No idea how to desing(Like name of column, size of db etc)

    can some body help?

  • Is very wide request!?

    So first of all you should identify the entities and attributes, shortly you will identify for these customer what kind of information do you want to save in your db example name, surname, date feedback, comment etc etc...

    the first step:

    Table Customers:

    Create Table Customers

    (

    IDC int identity(1,1) not null,

    Name nvarchar(25),

    Surname nvarchar(25),

    DateFeedback datetime,

    Comment nvarchar(200)

    );

    GO

    You should post more info what you are trying to do, and I strongly suggest you to read more for the basics of databases ( how to create them, what about size of them, identifying entities and attributes etc etc...)

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

  • Thanks for Reply:)

  • Also you should read more for the data types during the creation of tables! Lot of things believe me I do not have idea where to start to help you in this situation!

    First what you are trying to do be more specific!

    :w00t:

    ============================================================
    SELECT YOUR PROBLEM FROM SSC.com WHERE PROBLEM DESCRIPTION =
    http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply