Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 2,436 total)

  • RE: SQL 2005 Install - OS Partition a requirement?

    You just gotta love those "improvements" to the product !!!

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

  • RE: Query Running Slow

    It's an outline of steps to take in order to address poorly performing queries and databases.

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

  • RE: The Scobleizer

    Interesting ... however when you break it down to the most basic element - its just a tool. With any tool, some tools work better than others for specific purpose(s)....

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

  • RE: Query Running Slow

    The list has been dutifully uodated Jeff

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

  • RE: Query Running Slow

    A little something for future reference ...

    ... my 'short list' for tuning:

    Round I

        DBCC UPDATEUSAGE

        UPDATE STATISTICS (with FULL scan) for all tables

        exec sp_recompile for all tables

        exec sp_refreshview for...

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

  • RE: Drive Letter

    Is this a cluster ???

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

  • RE: MOM False Alarms on Sql Server

    Have you applied SP2 to MOM ???

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

  • RE: Tools in Workgroup Editions

    If this is a production server then you are limited. If you have a development/test server then you could use the Developer Edition, which has everything you need and more, and...

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

  • RE: Need to access the impact of changing server IP address

    Since Windows caches DNS information you may have to resort to some specific windows level actions on your machines in addition to the abovementioned items.

    For the clients this would be:...

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

  • RE: Question regd. the database design..

    I'd look into table partitioning. One partition per week.

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

  • RE: The Upgrade Question

    There are many, many more that provide software as well. GE I have no faith in whatsoever. We have a GE system totally supported by them on a separate domain...

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

  • RE: Using parameter makes query to run 10X slower

    You may want to search this site for "parameter sniffing". It should provide some alternative and very important insights.

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

  • RE: Changing space allocated to database

    Check BOL - ALTER DATABASE, SIZE MAXSIZE,  GROWTH

    and an example:

     

    ---

     alter database master modify file

      (name = master,

      size = 25MB,

      maxsize = 51MB,

      filegrowth = 25MB)

     go

     checkpoint

     go

     alter database master modify file

      (name = mastlog,

      size = 25MB,

      maxsize...

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

  • RE: How to run an app using Xp_cmdshell

    It may be a case of not having the proper PATH. Here's a few eye opening commands from the 'old' DOS days that may help:

    • exec master.dbo.xp_cmdshell 'cd /d'
    • exec master.dbo.xp_cmdshell 'echp %PATH%'
    • exec master.dbo.xp_cmdshell 'set'

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

  • RE: Error when attempting to stop a SQL 2000 Instance from Enterprise Manager

    Are you running EM from your desktop or from the SQL Server ? What windows account are you logging in as ? Does the windows account that you are logging...

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

Viewing 15 posts - 1,096 through 1,110 (of 2,436 total)