Forum Replies Created

Viewing 15 posts - 3,316 through 3,330 (of 5,103 total)

  • RE: ADO recordsets and scaling

    >> Update by chunck... almost same thing I proposed, but you'd have to drop the actual table once the update is over... not a big problem. <<

    Really the issue is...


    * Noel

  • RE: help with sql script

    Are you querying a REMOTE server? .. I mean @ServerName <> LOCAL

     


    * Noel

  • RE: SQL HELP!!!!

    OR use NULLIF

    SELECT  value1 AS 'VALUE1', 

     value2/NULLIF(value1,0) 'VALUE2', 

     value3 AS 'VALUE3',  

     value2/NULLIF(value3,0) 'VALUE4'

    FROM dbo.tblvalues VL

    WHERE VL.ID = @ID

     


    * Noel

  • RE: ADO recordsets and scaling

    Ok back from lunch.

    1. >>I can't use a predefined stored proc because the program might be used on any table in any db on any server, with a variable set...


    * Noel

  • RE: ADO recordsets and scaling

    Tough question to answer without the necessary nitty gritty details but here is what I think.

    Because Batch update is not being used I would assume that some parameterizing is happening under...


    * Noel

  • RE: Widest table

    SAP = Systems Analysis and Program Development

    If all the above is true then that name should be an OXYMORON

     


    * Noel

  • RE: Simple question on triggers

    What I am trying to say is that the process can be more complex than doing just a union all. If it is just a matter of purely recording what...


    * Noel

  • RE: Simple question on triggers

    Because of the architecture is unknown ... as of this momment

    It was not defined (yet) how does multiple record changes is going to be...


    * Noel

  • RE: Simple question on triggers

    OR if you want BOTH , which is usually the case  

    then execute the insert twice (one for each table of course )

     


    * Noel

  • RE: Group By with Non-Aggregate Function

    Are you trying to make people guess what you want?

    Can you be a bit more explicit with examples and data?

     

    select distrinct fld1, fld2

    from tablex

    -- or

    select fld1,fld2

    from tablex

    group by fld1,...


    * Noel

  • RE: Automatic DataBase Documentation

    Sorry about the bad news but it is not freeware anymore

    Though not too expensive either ...


    * Noel

  • RE: How to synchronize between sql client and sqlserver

    some how the OFFLINE status is definetly being kept in master I can't figure out a possible scenario but you should look at the steps you are taking very carefully....


    * Noel

  • RE: Calculated Column vs Normalization

    Well I am not Joe Celko but I can tell you that a calculated column is not STORED in the table it is just a comodity for implementation!

    Reality is...


    * Noel

  • RE: Link Server

    Good can you tell them to change the ?????

     


    * Noel

  • RE: ALTER TABLE CHECK CONSTRAINT not working for Foreign Key

    Wow Thanks!

    It is good to know that other people are having the same problem so you keep the sanity

     

     


    * Noel

Viewing 15 posts - 3,316 through 3,330 (of 5,103 total)