Forum Replies Created

Viewing 15 posts - 1,396 through 1,410 (of 2,436 total)

  • RE: Not receiving newsletters

    If you're using a 'work' email account like I am maybe you can have a quick chat with the email/exchange admin. We've implemented a number of new and diffrent technologies...

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

  • RE: Creating Job in Enterprise Mgr using TSQL code

    Sometimes SPs just won't do - especially if there is a lot of DDL involved. For these 'special' cases I'd use CmdExec and OSQL instead !

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

  • RE: DBCC SHOWCONTIG Problem

    Only if the solution uses sp_MSforeachtable ... LOL !

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

  • RE: Will this command lose transaction log data?

    'Recovery Mode' anybody ??? Ultimately this affects how an individual database reacts to the command listed in the beginning of the post. e.g. 'Simple Recovery' does not require a full...

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

  • RE: database owner

    I'd opt to make the owner 'sa' - this login always exists on every SQL Server. Whereas 'aaron' or another arbitrary name might not, then causing you potentially many issues....

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

  • RE: Paradox

    Check out this link: http://www.connectionstrings.com/

    It has a Paradox section and 'stuff' that relates to Access and .NET. So I'd guess you could convert that information into an Openquery. Unfortunately...

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

  • RE: Can we change the Cluster Virtual server name

    Tell your AD guy to hit the books on networking. This has absolutely nothing to do with AD at all it's in DNS management. However you must be a Domain...

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

  • RE: Stored Procedure Tuning...

    Round III

        Profiler - you're already there

        Query Hints

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

  • RE: The 36 Hour Day

    It all boils down to choice. The choice to state (and believe in) the words Yes or No.

    • Am I a realist - Yes.
    • Do I care that it is out...

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

  • RE: Can we change the Cluster Virtual server name

    I'd opt for using a DNS alias - it's the quickest and easiest way. Besides, this then has absolutely no impact on the cluster or the physical nodes.

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

  • RE: When is .LDF AUTOMATICALLY reduced in size?

    Trick answer:

    4) Other --> alter database [database_name] set AUTO_SHRINK on

    This shrinks both the data and log portions of the database whenever the SQL Server engine feels it has the time....

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

  • RE: How Does the Richest Man Work?

    I'm curious as to what Bill uses for a screen saver ... maybe it's:

    http://www.sysinternals.com/Utilities/BlueScreen.html

     

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

  • RE: Stored Procedure Tuning...

    I would not remove the 'WITH RECOMPILE' if this is a batch type proc. The 'WITH RECOMPILE' option on a SP allows it to make use of the updated statistics...

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

  • RE: Stored Procedure Tuning...

    Here's 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 all views

    Round II

        DBCC DBREINDEX

       ...

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

  • RE: Is there a way of Shutting down an SQL Server Cluster service from VB/DMO (or similar)?

    Have you looked into NET STOP ???

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

Viewing 15 posts - 1,396 through 1,410 (of 2,436 total)