Skip to content
View sqlhammer's full-sized avatar

Block or report sqlhammer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. EventHammer EventHammer Public

    Tournament management system for martial arts.

    C# 1 1

  2. rdbms rdbms Public

    A side project to make my own relational database management system in C++.

    C++

  3. SQLServerUnattendedInstalls SQLServerUnattendedInstalls Public

    Collection of scripts to handle unattended (silent) installations of MS SQL Server.

    PowerShell 2

  4. SQLServerDisasterRecovery SQLServerDisasterRecovery Public

    T-SQL and PowerShell scripts which relate to disaster recovery or high-availability in any way.

    PowerShell 3

  5. Queries the state of your SQL Server... Queries the state of your SQL Server Availability Groups
    1
    -- Identifies 
    2
    --    - all replicas
    3
    --    - which node is primary
    4
    --    - availability mode (sync / async)
    5
    --    - failover mode (manual / auto)
  6. Retrieves a list of registered serve... Retrieves a list of registered servers from a SQL Server Central Management Server
    1
    Function Parse-ServerGroup($serverGroup)
    2
    {
    3
        $results = $serverGroup.RegisteredServers;
    4
        foreach($group in $serverGroup.ServerGroups)
    5
        {