Forum Replies Created

Viewing 15 posts - 2,056 through 2,070 (of 4,745 total)

  • RE: Cannot shrink log, simple recovery model, no open transactions, tried checkpoint, etc.

    offline,rename,online would have been quicker and the better solution in this case. 😉

    ---------------------------------------------------------------------

  • RE: SQL Server 2008 rename, jobs not running

    yes I saw that but its not an MS supplied script.

    ---------------------------------------------------------------------

  • RE: Cannot shrink log, simple recovery model, no open transactions, tried checkpoint, etc.

    pavan_srirangam (11/9/2010)


    Follow this steps:

    1.enable truncate log on checkpoint in sp_configure.

    2. Change recovery model to bulk-logged.

    contradictory advice. trunc log on chkpoint is SQL 7 version of simple mode.

    simple you can...

    ---------------------------------------------------------------------

  • RE: SQL Server 2008 rename, jobs not running

    Mischa E.J. Hoogendoorn (11/8/2010)


    . Looking on the internet did give me the following query:

    DECLARE @srv sysname

    SET @srv = CAST(SERVERPROPERTY('ServerName') AS sysname)

    UPDATE sysjobs SET originating_server = @srv

    That query...

    ---------------------------------------------------------------------

  • RE: Cannot shrink log, simple recovery model, no open transactions, tried checkpoint, etc.

    GSquared (11/9/2010)


    It's possible that your VLFs are blocking the shrink. It's possible (I think) that a sector in use near the end of the file will prevent shrinking and...

    ---------------------------------------------------------------------

  • RE: How can I view file information on a mirror database?

    sys.master_files is the 2005 and above equivalent of sysaltfiles. Expect sysaltfiles to be deprecated, so I recommend getting in the habit of using sys.master_files.

    ---------------------------------------------------------------------

  • RE: Permissions messed up with Service Pack?

    first off you could have gone straight to service pack 2 and missed out service pack 1 install, they are cumulative.

    to fix your problem, log onto server with SSMS, right...

    ---------------------------------------------------------------------

  • RE: Database refresh date

    query table msdb..restorehistory.

    ---------------------------------------------------------------------

  • RE: Copy Database Log Full Error

    why are you using the copy database method? Why not backup\restore or detach\attach?

    ---------------------------------------------------------------------

  • RE: who created database

    Unless it is changed after creation, the database owner will be the userid who created the database, so check that.

    ---------------------------------------------------------------------

  • RE: Memory configuration

    well firstly I never advise on major configuration changes without caveats, after all I won't be the one to suffer any consequences.

    The /3GB switch reduces memory available to the OS,...

    ---------------------------------------------------------------------

  • RE: Memory configuration

    Your memory is being allocated dynamically, on a server with only 4GB memory this is what you want.

    Use task manager to see amount of memory it is using (sqlservr.exe), or...

    ---------------------------------------------------------------------

  • RE: Enterprise Management

    About 100 instances and a big user of MOM (soon migrating to SCOM). You can add your own scripts to it so we do extra things like look for things...

    ---------------------------------------------------------------------

  • RE: Activity Monitor in 2008?

    or right click on the server name in the left hand pane in SSMS

    ---------------------------------------------------------------------

  • RE: SQL Agent Won't Start

    bills in the post 🙂

    ---------------------------------------------------------------------

Viewing 15 posts - 2,056 through 2,070 (of 4,745 total)