Forum Replies Created

Viewing 15 posts - 571 through 585 (of 594 total)

  • RE: Union 2 tables

    quote:


    nope, i'm still getting this:

    AMSTERDAM Admin ...

  • RE: Union 2 tables

    try this then...

    
    
    select dt1.Vessel, dt1.Callid, sum(dt1.total_minutes) as Total_Minutes from
    (
    select Siteid as Vessel,callid,sum(airtime) as total_minutes from oldbill02 with(index(siteid)) where callwhen >='12/31/2002' and substring(callnbr,5,3)<>'976' and siteid <>...
  • RE: Union 2 tables

    Don't know why I didn't see this sooner...

    
    
    select SiteID, CallID, sum(total_minutes) as "Total_Minutes" from
    (
    select Siteid as Vessel,callid,sum(airtime) as total_minutes into tempweek from oldbill02 with(index(siteid)) where...
  • RE: Union 2 tables

    quote:


    Doesn't work: this is the error

    Column 'oldbill02.callid' is invalid in the select list because it is not contained in either an aggregate...

  • RE: Table Locking

    Unfortunately, nmoore is correct. About the only thing you can do, if the results of the select statement are being used in an update statement, is to concentrate efforts...

  • RE: table locking

    quote:


    Hi, I have been monitoring locking on my Production database, it is a SQL Server 7.0 db. I am noticing in syslockinfo...

  • RE: Union 2 tables

    quote:


    I'm trying to union 2 tables same structure and I need to add one column.doing this.

    select Siteid as Vessel,callid,sum(airtime) as total_minutes into...

  • RE: Unique number

    quote:


    Hello

    I need to know if is possible when i use an insert or update TSQL store in one column an uniqueidentifier...

  • RE: how to increase speed of stored procedure?

    quote:


    which is better 'a' or 'b' ?

    any good advice to improve the two stored procedures ?


  • RE: Buying new hardware & want suggestions

    quote:


    Rebuttal?


    None at all. I was just wondering whether you were bound by contract or...

  • RE: Where Did the Index Go???

    I'm on SQL7. Perhaps that's the issue?

  • RE: User-defined Data Type Basics

    quote:


    There has to be a caveat. George Bernard Shaw wrote that the reasonable man attempts to accomodate all changes and find...

  • RE: Where Did the Index Go???

    quote:


    I couldn't re-produce this. The statement

    drop index

    .[£indexname] executed successfully.

    Regards,

    Andy Jones


    Sorry, my british friend. ...

  • RE: Buying new hardware & want suggestions

    quote:


    I am in the process putting together a specification for a new server (Compaq).


    Just wondering...why...

  • RE: User-defined Data Type Basics

    quote:


    Frankly if your schema is in a regular state of flux and you are not in a development environment then there is...

Viewing 15 posts - 571 through 585 (of 594 total)