Forum Replies Created

Viewing 15 posts - 1 through 15 (of 20 total)

  • RE: The Truth Table

    I would like to thank you for your comment especially Cheryl Marsh .

    I did not mean to show off myself,I just wanted to share my Idea with you.

    If you...

  • RE: SQL challenge in Select statement

    Hi Digs

    consider the following table:

    create table #test(id char(1),value int)

    insert #test

    select 'A',  2000

    union all

    SELECT 'A',3000

    union all

    SELECT 'A',1000

    union all

    SELECT 'A',1500

    union all

    SELECT 'B',1000

    union all

    SELECT 'C',5000

    union all

    SELECT 'C',1000

    I think this is what you...

  • RE: advantage and disadvantage of xml over recordset

    thanks a lot.I got the idea!

  • RE: All About Transactions - Part 3

    I really enjoy All About Transactions - Part 3.I am interested in to hear about your new  article which covers Bound Connections, Distributed Transactions .

     

  • RE: Question of the Day for 13 Feb 2004

    I ran dbcc showcontig('dbo.Tb_Amz_UnitChange81') with all_indexes  here

    are the results:

    DBCC SHOWCONTIG scanning 'Tb_Amz_UnitChange81' table...

    Table: 'Tb_Amz_UnitChange81' (1280723615); index ID: 1, database ID: 7

    TABLE level scan performed.

    - Pages Scanned................................: 1427

    - Extents Scanned..............................: 182

    -...

  • RE: UPDLOCK Question

    Thank you so much.I am going to change all hold lock with UPDlock.

  • RE: UPDLOCK Question

    I have a table like the following:

    CREATE TABLE test (Id int primary key,blah varchar(30))

    and a stored proc like this:

    create procedure usp_test @p varchar(30)

    as

    declare @nextid int

    begin tran

    select @nextid=count(*)+1

    from test(holdlock)

    insert test

    values (@nextid,@p)

    commit...

  • RE: UPDLOCK Question

    According BOL

    quote:


    Use update locks instead of shared locks while reading a table, and hold locks until the end of the statement...

  • RE: QOD 12/10/2003

    Thanks Frank .I mean Enterprise Manager .

  • RE: OPENXML

    OR Try This:

    SELECT *

    FROM OPENXML (@idoc, '/criticalityquestion/optionvalue',2)

    WITH (optionvalue varchar(20) 'text()')

  • RE: QOD 12/10/2003

    if you take a look at design of syslogins you cannot see this column .is the isntname column hidden?

  • RE: Bypassing Triggers

    It will fire once.

  • RE: QOD 11/21

    I think i misunderstand the clustered index!

    I have a table with the following structure

    CREATE TABLE [Tb_Amz_UnitChange81] (

    [Fd_Ucg_Term] [char] (8) ,

    [Fd_Ucg_Regno] [int] NOT NULL ,

    [Fd_Ucg_ClassId] [int] NOT NULL ,

    [Fd_Ucg_CourseId] [int]...

  • RE: How indexs are used to locate data from table

    Beer is not cold and it's not fizzy

  • RE: select query

    hey phillcart

    did you see my post?your reply is exacttly similar mine!!!

Viewing 15 posts - 1 through 15 (of 20 total)