Forum Replies Created

Viewing 15 posts - 106 through 120 (of 196 total)

  • RE: June CTP Sql Server 2005 Download

    I use Nero and just got nero to burn the image to a CD.  No Problem with CD.

  • RE: Numeric multiplication scale problem

    Thanks Frank. 

    This did help, except for the numbers and precision I am using, but now i can work around the situation.

  • RE: Needed Help for Update/Insert Trigger

    One other thing to Remember, a Null <> Null so you could have the Following Row a, b, c, Null, d in the table  And sitll insert a, b, c, null,...

  • RE: Needed Help for Update/Insert Trigger

    There is something a bit odd in this Trigger. MAybe I do not quiet understand what you are trying to do.

    If it is triggered by an update statement the Row...

  • RE: How do i group by month?

    In That Case You Are Looking for:

     

    Select

    [Product Code],     [Part#]

    ,Month = Convert( Varchar(7), [Replacement Date], 120 )

    ,Qty = Sum( [Replacement Qty] )

    From SourceTable

  • RE: How do i group by month?

    Your Question is a bit vague.  Please post the source table structure and what the results should look like.

  • RE: need ideas on Count()

    Simply add This:

     

    CompletedReq = Sum( Completed )

    ,UnCompleted =  count(ClientGroup.fk_clientid)  - Sum( Task.Completed )

    or

    ,UnCompleted =  Sum(

       Case Task.Completed

     

    )

  • RE: Date Comparison Question

    Why not just

    Where a.Dt >= b.StartDt

    And  a.Dt <= b.EndDt

     

    Sql's Datetime datatype is treated as one.

  • RE: Data Mining Decision Tree

    HI. Thanks foor the esponse. I have tried this. Even at Complexity levels below 0.1( highly likely to cause a split) the tree is Very short. I...

  • RE: Connection Error

    Reading your mail made me go Check Some Settings, and you were spot on. My Desktop did not have Permissions on the Sorce SqL DataBase. Thanks, Pretty Dumb...

  • RE: Connection Error

    All Done through AS Using NT Authentication

  • RE: @@SERVERNAME

    I had the same problem and also tried the instructions given in BOL. We had to Reboot the server ( not just restart the Service ) in order to...

  • RE: UDF's vs. SP's and optimization

    instead of

    where (@P1 is null or table.p1=@P1) and

    (@P2 is null or table.p2=@P2) and

    (@P3 is null or table.p3=@P3)

    Try using

    where (table.p1= isnull( @P1, table.p1) and

    (table.p2=isnull( @P2, table.p2...

  • RE: Database Variable

    Tasks use a connection( referenced by name [Actually the DTS Connection Description]).

    By changing the Connection Properties the Tasks will be function correctedly. It is like changing the properties of...

  • RE: Measuring CPU usage

    /*********************

    Move DAta to Tempt table with RowID ordered by SPID, loginTime

    */

    Insert into #tmp

    Select SPID, LoginTime, DT, CPU

    FRom cpu_usage cpu1

    order by SPID, LoginTime, DT (desc ) -- This is Important

    Select

    ...

Viewing 15 posts - 106 through 120 (of 196 total)