Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 9,244 total)

  • RE: AlwaysOn connection issue with the primary node using its host name

    ok, so what scripts did you run to configure readonly routing?

    Would expect to see something like this

    ALTER AVAILABILITY GROUP [STOKEAG_1] MODIFY REPLICA ON

    N'STOKECSCLNODE1\INST1' WITH (SECONDARY_ROLE (ALLOW_CONNECTIONS = READ_ONLY));

    ALTER AVAILABILITY GROUP...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: AlwaysOn connection issue with the primary node using its host name

    sherrerk (2/26/2015)


    I am no problem connecting to the secondary node using its host name, but can not get to it through the listener using the applicationintent=readonly.

    Can you provide details of...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: The slab consolidation / trim operation cannot be performed because the volume alignment is invalid

    this looks pretty good and mentions netapp specifically

    http://blogs.msdn.com/b/clustering/archive/2010/05/23/10015174.aspx?PageIndex=57

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: AlwaysON Multi Subnet Cluster, AG Listener

    muthyala_51 (2/26/2015)


    Brandon- I am facing exactly the same issue with different subnets. We are not making any changes to the connection strings. Updated the settings(hostrecordttl and registerallprovidersip) of listener. But...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Performance counter Process SqlServ multiple sql instances

    to identify instance names to PIDs use either SQL server configuration manager or windows task manager.

    In sql config manager the process id can be seen in the SQL Services window

    For...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Storing Images in Database

    Anshul Parmar (2/26/2015)


    I have given all permissions, still same issue.

    Full permission to who??

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Storing Images in Database

    The error 3 indicates a lack of ntfs permissions on the file location.

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: The slab consolidation / trim operation cannot be performed because the volume alignment is invalid

    Is this a windows server failover cluster?

    Are you using cluster shared volumes?

    Can you provide more detail around this particular volume itself, I.e. How it was formatted, etc

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Cluster resource 'SQL Network Name (SQLCLUS1)' of type 'Network Name' in clustered role 'SQL Server (DB1)' failed.

    You'll need to supply more detail, is this a new instance youre installing or an existing instance?

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: quoram set up

    Are the nodes on separate geographical sites or are they both located in the same location. Since youre planning to use alwayson availability groups storage shouldnt be of any concern....

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: quoram set up

    a 2 node cluster will need a witness to attain quorum. If it's a same site cluster you could use a disk witness, if it's a cross site cluster use...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Add Third replacement node to SQL cluster without using SQL Enterprise License

    spaghettidba (2/24/2015)


    Perry Whittle (2/24/2015)


    do not evict the node, this is not the correct action.

    Why wouldn't it work? I'm pretty sure I have done this in the past.

    I'm not...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: FOR FILES command to delete old backup files on remote server

    use a powershell job step instead and use the following

    $checkdate = (get-date).AddDays(-30)

    $checkpath = "C:\Program Files\MSSQL10_50.MSSQLSERVER\MSSQL\Log\*"

    echo "The checkdate is "

    echo $checkdate

    get-childitem $checkpath -Include *.sqb | ?{$_.LastWriteTime -lt $checkdate} | remove-item

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Add Third replacement node to SQL cluster without using SQL Enterprise License

    do not evict the node, this is not the correct action.

    The restriction on how many nodes may host a clustered instance of SQL Server in Standard edition is within...

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Named instance connectivity issues

    you actually configured it to listen on 1433?

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

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 2,326 through 2,340 (of 9,244 total)