Forum Replies Created

Viewing 15 posts - 781 through 795 (of 2,436 total)

  • RE: Question of the Day for 30 Apr 2007

    For SQL 2000 and v7.0 this is true. In earlier versions you could but why would you ?

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Guide as to how to go about SQL Server 2K performance tunning and optimization

    Here is the list Jeff mentioned early in the post (I may post more once I get through the thread:

     

    Here's my 'short list' for tuning:

    Round I

        DBCC UPDATEUSAGE

        UPDATE STATISTICS...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Guide as to how to go about SQL Server 2K performance tunning and optimization

    Start doing some homework first. On this site use the search feature for "tuning", "optimization", "performance", "join", "cursor". That ought to give you a pretty large start. Next visit

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Preferred RAID

    Our server standards are as follows:

    Internal RAID 1 array (dual 36 Gb 15K rpm disks) with battery backed controller - 3 logical drives.

    • C: for the OS, pagefile
    • E: system logs, SQL errorlogs, SQL...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: BCP error -Unable to open BCP host data-file

    the actual error never made it into the post.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: DBCC Reindex Question

    Not totally sure on 2K5 but on 2K I can answer. That depends on the method of execution. If you do all table REINDEXES followed by all table UPDATE STATS you...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Cluster Failover Testing

    Aside from the testing with the Cluster Administrator as outlines in Technet we ALWAYS perform the following tests after clustering and SQL Server is configured and installed:

    • Both nodes up -...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Be Prepared

    I tend to agree with Doug on this one Steve. No power and inclement weather ... well missing one editorial or newsletter seems acceptable. Maybe you have even fallen victim...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: unable to display the database listing when using Windows user

    Have you added  computername\IUSR_computername as a Windows Login to SQL Server ???

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: CREATE DATABASE Adds extra backslash to Data File Path

    Just shut down SQL Reporting Services ... after this is complete then those databases can be treated just as 'user' databases'.

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: DBCC Reindex Question

    If you reindex do not forget the execute sp_recompile for the table(s) affected and sp_refreshview for the view(s) affected. otherwise you will have up to date statistics and stored procedure...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: CREATE DATABASE Adds extra backslash to Data File Path

    It still behaves the same because the databases already exist (they were created with the extra slash in th path). If you create new databases they will not have the...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: "Device Inaccessible"

    You may also have to look at your NAS (Network attached storage) or other servers depending on where these devices actually map to. Potential causes other that local SQL Server...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: Backup device cannot be opened!

    here's a quick way to test and/or verify what the problem is:

    declare @cmd varchar(64)

    select @cmd='dir D:\BACKUP'

    exec master..xp_cmdshell @cmd

     

     

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

  • RE: best size for TEMPDB

    If you can afford a couple of SQL restarts I'd first get the tempdb down to it's initial size on fresh installation - 2 Mb. Then I would immediately allocate...

    RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."

Viewing 15 posts - 781 through 795 (of 2,436 total)