Forum Replies Created

Viewing 15 posts - 736 through 750 (of 1,081 total)

  • RE: Procedure to see database status

    simple script, but should give you the results...

    select name,

    database_id,

    user_access_desc,

    state_desc,

    (CASE is_in_standby WHEN '0' THEN 'NO' ELSE 'YES' END) as Is_in_standby,

    GETDATE() as time_stamp

    from sys.databases

  • RE: SQL Server Restart

    SQLSeTTeR (7/1/2010)


    My production SQL server restarted itself last night. Any ideas on where I can get some more information regarding the below error message?

    SQL Server must shut down in...

  • RE: SQL Server 2005 or SQL Server 2008

    I really don't think it's such a major transition, there are a few extra features, discontinued features, but the biggest difference in versions are in BI.

    Do the training to get...

  • RE: STOP SERVER

    SHUTDOWN WITH NOWAIT

  • RE: sp_dropserver and sp_addserver question

    dy265 (6/30/2010)


    I am using the sp_dropserver and sp_addserver command but I really don't understand what it really does other than dropping a server and define a server, like if these...

  • RE: how can we monitor the general health of the server?

    venkatb.dba (6/30/2010)


    Hi,

    when i am finding server health i can't able to understand how we check that

    how can we monitor the general health of the server?

    Server, or SQL Server?

    You can...

  • RE: set Auto Update Statistics ON

    This is an undocumented script like SP_MSForEachTable...

    Try:

    exec sp_msforeachdb @command1='ALTER DATABASE ? SET AUTO_UPDATE_STATISTICS ON'

  • RE: PRINT vagaries

    Good tricky one...thank you

  • RE: Are the posted questions getting worse?

    I agree Steve, that 2nd England goal should have been awarded...but overall, the German's were much better.

    England's defense was non existent, attacking lacked aggression.....

    Basically, Germany still outplayed them.

  • RE: The Phantom DBA

    Yes, definitely a good career choice.

    MS SQL will always be in demand, it's an excellent product, easy to manage, and capable of doing great things. (no, MS didn't pay me...

  • RE: sql server 2005 16gb - high memory utlization

    Here is a good script...credits to the authors...

    /****************************************************************************************

    NAME:DATABASE I/O STATISTICS

    BY:MARK JONES

    DATE:19-02-2008

    PURPOSE: Provides useful statistics about Database I/O requests. Uses the function

    ::fn_virtualfilestats to retreieve all the database file statistics includeing

    ...

  • RE: sql server 2005 16gb - high memory utlization

    SQL will allocate as much memory as needed/available.

    Configure your maximum memory allocation within SQL, leaving adequate memory for the OS and other services.

    On a 16gb server, I'd configure SQL to...

  • RE: SSIS Package Problem

    The job is being run as the zz_sql_dhsx account which is a member of the sysadmin role.

    on both sides? (source & destination?)

    You still didn't provide any sort of error messages...

  • RE: Are the posted questions getting worse?

    Schadenfreude-Mei (6/23/2010)


    CirquedeSQLeil (6/22/2010)


    GilaMonster (6/22/2010)


    Steve Jones - Editor (6/22/2010)


    Sorry, Gail, looks like SA is not moving on in the World Cup.

    🙁

    What a surprise. Not.

    At least we didn't lose every match...

  • RE: SSIS Package Problem

    At which sort of step are your packages failing?

    Using any authentication within these specific packages?

    As what are you running these packages under the agent?

    Error messages?

Viewing 15 posts - 736 through 750 (of 1,081 total)