Forum Replies Created

Viewing 15 posts - 31 through 45 (of 61 total)

  • RE: How to calculate percentage??

    No, it's not helping

  • RE: How to calculate percentage??

    Yes, am using MS SQL 2000

  • RE: What to Modify in T-SQL?

    Thanks for giving me the solution.

    Actually, am working in my college project, where am creating an automate system for managing all the college activities like inserting student details, calculating students...

  • RE: How to give restriction on through Upload Date??

    Sir,

    In second_table, i inserted following data:

    ----------------------------

    proj | valid_from | valid_to

    ----------------------------

    ABCD 1/7/2009 7/7/2009

    ----------------------------

    and in MAIN_TABLE:

    --------------------

    date |...

  • RE: How to give restriction on through Upload Date??

    Thanks for replying.

    I'll check the T-SQL and reply you back soon.

    Thanks again!

  • RE: How to give restriction on through Upload Date??

    The condition should be in another table column where only date will be provided.

  • RE: Restriction in INSERT

    Thanks A Lot!

    Now it's working superb...THANKs A LOT!

    Can I ask you another question?

    Whenever am trying to populate this MyTable through updating from multiples tables,am getting the following error:

    Key column information...

  • RE: Restriction in INSERT

    Sir, If am doing:

    UPDATE MyTable

    SET MARKS = 87

    WHERE Student = 'Andy' and Course = 'ASM'

    Its not allowing to enter the data on 2nd strike and showing...

  • RE: Restriction in INSERT

    Am talking about 3 strikes.

    How can I use this counter column or the INSTEAD OF?

    I don't want to use in my ASP as if I have to make changes in...

  • RE: Restriction in INSERT

    Am talking about 3 strikes.

    How can I use this counter column or the INSTEAD OF?

    I don't want to use in my ASP as if I have to make changes in...

  • RE: Trigger not Updating my DestinationTable!

    GilaMonster (3/4/2009)


    mail2payan (3/4/2009)


    Which columns determine the matching row in DestinationTable?

    Sorry, I did not get this question.

    When rows are inserted into MyTable, the matching rows in DestinationTable are updated with cumulative...

  • RE: Trigger not Updating my DestinationTable!

    Which columns determine the matching row in DestinationTable?

    Sorry, I did not get this question.

    For update I used FOR INSERT, UPDATE syntax to make the trigger fire for both events means,...

  • RE: Trigger not Updating my DestinationTable!

    Let me explain you in details:

    Suppose, am entering followin data in MyTable:

    insert MyTable select 'Steve', 'ASM01', 3, 50,0

    insert MyTable select 'Steve', 'ASM01', 3, 43,0

    Go

    Now the Trigger which is attached with...

  • RE: Trigger not Updating my DestinationTable!

    Whenever the data is being inserted in MyTable, the Trigger will automatically exceuted and filled the DestinationTable with following data:

    --------------------------------------------------

    Student course credit Grades Grade Points Quality

    --------------------------------------------------

    Andy ASM01...

  • RE: how to Update One table from Multiple Tables?

    --This is my StudentMark table, here I had inserted new column called ind_active!

    create table dbo.StudentMark(

    StudentMark_IDbigint identity not null,

    Student_IDbigint not null,

    Course_IDbigint not null,

    AssgnMrk_IDbigint not null,

    Markbigint null,

    ind_activeCHAR(1)NOT NULL

    Constraint c_ind_active CHECK (ind_active IN...

Viewing 15 posts - 31 through 45 (of 61 total)