Forum Replies Created

Viewing 15 posts - 46 through 60 (of 108 total)

  • RE: SQL Server Jobs, status, duration running, step

    Yes, please..

    I have created a text file with list of servers (I am using powershell for the same list).

    I could see only single column in result set, converted to CSV...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: SQL Server Jobs, status, duration running, step

    Thanks for your fast response and help.

    I used the PS script and ran today. I received only a single column results with numbers. Might be I missed something.

    Is there any...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: Server doesn't accept connections from the web!

    Just a try..

    connect using : instancename,XXXX (1433, port number)

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: how to enable back database mirroring

    Restore latest Full backup first and Transaction Log backup with RESTORE WITH NORECOVERY option (db should be in restoring mode).

    Then, start configuring DB Mirroring again.

    Hope this helps..!

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: Reindex task taking for ever

    check > DBCC SHOWCONTIG

    And also check if any applications are accessing the tables, any transactions running.

    And I would suggest maintenance activities should be done in non peak hours...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: Backup failed - no SQL agent job

    Third party tool, NetBackup client etc..

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: find the status of SQL Services on multiple servers

    Thanks Patrick for your time.

    Adding 800+ servers to "Central Management Servers" is a big problem and in manual.

    Any automation for this to register.

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: find the status of SQL Services on multiple servers

    yes we are using Powershell already for all the machines.

    But I am to trying to get this done by SQL Queries.

    Is there any way to add all the servers to...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: SQL server SP1 update

    I think we should check 'Setup Bootstrap' folder with the KB article number for SP install.

    EXAMPLE:

    'C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Update Cache\KB2674319\ServicePack\x64\

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: find the status of SQL Services on multiple servers

    Appreciate if anyone can help.

    ---- ONe more add on.

    I have SQL 2000, 2005, 2008, R2 & 2012 in place, of 800+ servers.

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: restor failed

    Restore full, then differential. Thats enough to have as per your backups.

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: Is there a way to prevent users for running profile/trace on the server?

    Perfect.

    Thanks

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: Change the Owner of a Table

    Hope it helps...

    --- Executable scripts to change table owner

    SELECT 'EXEC sp_changeobjectowner '''+ SCHEMA_NAME(schema_id) + '.' + OBJECT_NAME(object_Id) + ''', ''dbo'''FROM sys.tables

    Results :

    EXEC sp_changeobjectowner 'dbo.Transactions_Entry', 'dbo'

    EXEC sp_changeobjectowner 'dbo.Transactions_Login', 'dbo'

    EXEC sp_changeobjectowner 'dbo.Transactions_Entry_0222',...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: find the status of SQL Services on multiple servers

    any help is appreciated..

    the below script gives report to only one machine twice when it is ran through VM.

    List of servers are not getting used for checking.

    why script not trying...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

  • RE: find the status of SQL Services on multiple servers

    Found something, but only for one and it is also not accurate.. Any help is appreciated.

    $servers=get-content "D:\instances.txt"

    foreach($server in $servers)

    { get-wmiobject win32_service -computername $server |

    select name,state |...

    Cheers,
    - Win
    "Dont Judge a Book by its Cover"

Viewing 15 posts - 46 through 60 (of 108 total)