Forum Replies Created

Viewing 15 posts - 556 through 570 (of 921 total)

  • RE: cross tabs quesry?

    quote:


    This link might also help you

    http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=16321

    Frank

    http://www.insidesql.de


    That method has a...



    --Jonathan

  • RE: Fastest Way to copy a fields table to table in SP

    If Table B is to start out empty, then you could truncate it, drop it and then use a SELECT statement rather than INSERT:

    
    
    SELECT Field1, Field2,...



    --Jonathan

  • RE: Random Record & NewID()

    If there isn't one, put a nonclustered index on just Site_Id. I don't think you'll find a faster way to do this than what you're already using, unless you...



    --Jonathan

  • RE: choosing hardware

    quote:


    I have 2 highly transactional DBs, 1 reporting DB, and 2 not so big DBs. They are used by a web application...



    --Jonathan

  • RE: Distinct results

    That's what UNION (as opposed to UNION ALL) is for.

    --Jonathan



    --Jonathan

  • RE: SQL Server 7 CAL question

    quote:


    Thank you guys for your input.

    One more question, for the web hosting purposes ONLY, do I need Processor Licensing & Internet Connector...



    --Jonathan

  • RE: UTC Dates

    quote:


    These are the bits I use in either sp or udf, I did have a calculate bit I built but cannot find...



    --Jonathan

  • RE: choosing hardware

    quote:


    quote:


    (HP Master ASE-SQL Server)


    as for acronyms, what...



    --Jonathan

  • RE: choosing hardware

    Hiring a consultant knowledgeable in SQL Server design can be a very good idea.

    --Jonathan (HP Master ASE-SQL Server )



    --Jonathan

  • RE: RowNum Function in SQLServer

    quote:


    <*grin*>I know!

    Excel is bread and butter to my daily work.

    No need to do some VBA in Excel. Functionality is already there when...



    --Jonathan

  • RE: SQL Server 7 CAL question

    quote:


    With 20 CAL's, you can only have 20 concurrent users. For a webserver, one user can be compared to a single session...



    --Jonathan

  • RE: Disconnect Event consumes large amount of CPU

    The duration (and i/o count) for a disconnect event is for the entire time the connection was alive. You're probably using connection pooling (the default), so the connections are...



    --Jonathan

  • RE: performance problems when using table datatype

    quote:


    AFAIK table variables are 'real' tables in tempdb.

    Frank

    http://www.insidesql.de


    They're not subject to transaction logging to disk,...



    --Jonathan

  • Viewing 15 posts - 556 through 570 (of 921 total)