Forum Replies Created

Viewing 15 posts - 1 through 15 (of 20 total)

  • RE: Dumping SQL Server

    Hello all,

    I recently worked with a company that created insurance company policy management and claims software.  Our platform was SQL Server.  It was the second generation on the product.  The...

  • RE: Row Size is too large?

    Another possibly less conventional solution would be to see if there are just one or two WRNotes entries that cause the whole row to exceed maximum length.  If so, can...

  • RE: How to check for Slammer Vulnerabilities

    It must be 8 characters long, include upper and lower case and at least one special character with no common words to meet the complexity requirements.

  • RE: How to check for Slammer Vulnerabilities

    Even though there is an SA password, it is possible that either the SA password, or the domain password is too short or not complex enough.  I believe that would...

  • RE: Noob; Backups to Stupid Proof SQL Server 2005

    Actually, to back up the database and all its data you do not have to stop the service.   There are a couple of approaches that you can take to accomplish...

  • RE: 2005 MDF File Size Multiplying out of Control

    Is data being entered?  If so, what mechanism is entering the data?, Is there an application that connects that has had recent configuration changes?

     

  • RE: SQL Server Stored Procedure Help

    I won't claim to have spent enough time on this to do it justice.  However, the use of the cursors seems like it would be an expensive process.  Ideally you...

  • RE: Is having multiple data files better?

    Sorry, one other note,  in SQL 2005 you can split clustered indexes on partioned tables.  If there is a set of older data or unused data to partition to a...

  • RE: Is having multiple data files better?

    A couple of thoughts.  First, you can get a performance boost by putting tables on their own disk subsystem.  The obvious move is the log file, which should still be...

  • RE: rESPONSIBILITIES OF sqlSERVER DBA!!!!!!

    In today's market it is very common for DBAs to wear two hats, an administrative hat and a programmers hat.  There are quite a few DBAs that do ETL with...

  • RE: Crazy Slow SQL

    If you run sp_monitor you should get a baseline and perhaps enough information to determine it you need to go onto more specific IO stats. 

    It will provide CPU%, number...

  • RE: Create user - TSQL

     

    I don't know that this is what you are looking for but the following will create a database, its schema, a table and add a user such that...

  • RE: Question of the Day for 22 Jun 2006

    I don't agree with the answer.  Yes it would work for Bob, but other members of HR that get cross-trained would have to have the same steps performed and once...

  • RE: Add Line number in a Select result

    Using an identity column will work fine until you have deleted a number of rows, then the line numbers will no longer be sequential.

     

    Keith

  • RE: Add Line number in a Select result

    For those that want the hard and slow way to do this, here is a cursor that will number each row as it is produced in the result...

Viewing 15 posts - 1 through 15 (of 20 total)