Forum Replies Created

Viewing 15 posts - 406 through 420 (of 921 total)

  • RE: Mry allocation problem

    quote:


    How can I use the mry between 3GB and 4GB for SQL*Server? Or isn't that possible?

    Edited by - Ludo Bernaerts on 11/25/2003...

  • RE: DIFFERENTIAL backup problem

    I have seen when the backup file was on another server and there were sporadic network problems.

    --Jonathan

    Edited by - Jonathan on 11/25/2003 05:00:19 AM

  • RE: Mry allocation problem

    That's as it should be. The /3GB parameter allows the application (SQL Server) to use up to 3GB of the 4GB that the OS can directly address. That's...

  • RE: Help with getting or setting row number in table

    quote:


    Thanks Jonathan, you put me on the right track, i ended up doing a distinct select into a temporary table and then...

  • RE: Sum of the count

    
    
    SELECT CONVERT(char(7),Date_Requested,120), COUNT(*)
    FROM Accident_Reg
    GROUP BY CONVERT(char(7),Date_Requested,120)
    UNION ALL
    SELECT 'Total', COUNT(*)
    FROM Accident_Reg

    If your Date_Requested column contains nulls, then use COUNT(Date_Requested) instead of COUNT(*).

    --Jonathan

  • RE: where do you have your backups go?

    quote:


    If you lose a drive on the backup partition it's okay becuase it's just for backups anyway.


  • RE: Help with getting or setting row number in table

    
    
    SELECT DISTINCT PARSENAME(ip_address,2)
    FROM Workstations

    --Jonathan

  • RE: SQL Server: Maximum Transactions per Second

    The best way is to test with your data and environment. There are too many variables to answer a question like this in an online forum.

  • RE: Help with getting or setting row number in table

    I store IP addresses as four tinyint columns so things like this are easy and no check contraints are required.

    Perhaps something like this:

    
    
    SELECT MIN(IPAddress)
    FROM YourTable
    GROUP BY...
  • RE: Wild card join

    How about using NULL as your "wildcard"? That would allow the correct data types for the codes, as you wouldn't need to accomodate a char among numbers as in...

  • RE: Wild card join

    I agree with Stu; this design is poor. As you're apparently stuck with it, try something like this:

    
    
    SELECT m.code, ISNULL(c.Code,n.Code), ISNULL(c.Des,n.Des)
    FROM Match m LEFT JOIN...
  • RE: Comments and Bugs on New Design

    The Delete Reply function no longer works for me.

    --Jonathan

  • RE: Help! Comparitive Trigger Problem

    Three errors here:

    • Realize that updates and inserts can happen to sets rather than just discrete rows, so your trigger needs to work with a set.
    • You can't use column identifiers in...
  • RE: Statistics move from DB to DB?

    quote:


    Well, I do not know for sure how much time it would take to create all statistics, but we really have very...

  • RE: Order of conditions in a WHERE Clause

    The SQL Server query optimizer does re-order the predicates for best performance; that's one use for statistics. It also expands "<>" operators to sargable operations when possible in SQL...

Viewing 15 posts - 406 through 420 (of 921 total)