Forum Replies Created

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

  • RE: Displaying duplicate entries.

    Create table tb_MyTest (n_RecordID int identity(1,1) , s_Name Varchar(20) )

    Insert into tb_MyTest(s_Name) Select 'Namha'

    Insert into tb_MyTest(s_Name) Select 'Shadique'

    Insert into tb_MyTest(s_Name) Select 'Jamil'

    Insert into tb_MyTest(s_Name) Select 'Begum Kubra'

    Insert into tb_MyTest(s_Name) Select...

  • RE: Displaying duplicate entries.

    Create table tb_MyTest (n_RecordID int identity(1,1) , s_Name Varchar(20) )

    Insert into tb_MyTest(s_Name) Select 'Namha'

    Insert into tb_MyTest(s_Name) Select 'Shadique'

    Insert into tb_MyTest(s_Name) Select 'Jamil'

    Insert into tb_MyTest(s_Name) Select 'Begum Kubra'

    Insert into tb_MyTest(s_Name) Select...

  • RE: Displaying duplicate entries.

    Create table tb_MyTest (n_RecordID int identity(1,1) , s_Name Varchar(20) )

    Insert into tb_MyTest(s_Name) Select 'Namha'

    Insert into tb_MyTest(s_Name) Select 'Shadique'

    Insert into tb_MyTest(s_Name) Select 'Jamil'

    Insert into tb_MyTest(s_Name) Select 'Begum Kubra'

    Insert into tb_MyTest(s_Name) Select...

  • RE: Using BEGIN TRAN...COMMIT TRAN

    Hi All,

    Its an Excellant article to understand Begin, Commit and RollBack Transaction:cool:

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