Forum Replies Created

Viewing 15 posts - 6,751 through 6,765 (of 9,241 total)

  • RE: Upgrade a standalone instance to Cluster

    Dj463 (8/24/2011)


    No the server is not a part of windows cluster.

    so how do you plan to install a clustered instance of SQL Server if the server is not part of...

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

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

  • RE: Grant Insert on a single table to all Logins

    yes, use a database role and grant users access to the role

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

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

  • RE: Decryptbykey from inside of a view

    flora M (8/24/2011)


    Thanks for all the responses. I'll look for an option to do this from a stored procedure.

    why??

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

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

  • RE: Looking for a no-cost issue tracker

    Snitz forum is a good way of creating an issues forum\tracker

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

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

  • RE: system database or user database

    in truth, to SSRS, they are system databases. They hold metadata and temporary storage (sort of like a TEMPDB) used by the reporting services instance(s)

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

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

  • RE: Decryptbykey from inside of a view

    flora M (8/24/2011)


    Specifically, where do I open the key/certificate? Below is what I currently have and I get an error before I even try to run it.

    [font="Courier New"]CREATE VIEW...

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

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

  • RE: Accessing SSRS 2008 from another computer

    ok the certificate is or at least should be bound to the fully qualified computername which you have changed. Self certs do also seem to be an issue i have...

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

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

  • RE: Determine if SQL Server is running on VM

    This will work

    exec sp_configure 'show advanced options', '1'

    reconfigure with override

    exec sp_configure 'xp_cmdshell', '1'

    reconfigure with override

    set nocount on

    create table #services(stext varchar(128))

    insert into #services

    exec xp_cmdshell "net start"

    If (select * from #services where...

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

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

  • RE: Change IP address on prduction server

    ananda.murugesan (8/24/2011)


    How to re-assign new IPAddress-2 in SQL server 2008.

    change the IP address on the server network connections centre and restart the sql server instance. Dont touch anything else!

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

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

  • RE: A network-related or instance-specific error occurred while establishing a connection to SQL Server

    is there a firewall between the 2 endpoints?

    can the client machine resolve the server name or even ping it?

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

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

  • RE: 2008 SP2 2 node cluster

    you also need to remove the passive node from the possible owners list on the cluster resources in case Murphy's law tries to fail over to that node during the...

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

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

  • RE: Accessing SSRS 2008 from another computer

    where did you get the SSL certificate for the site, is it self generated?

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

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

  • RE: SQL Server 2008 R2-SP1 Installation on Active/Active 2 node cluster

    patch the passive node first, remove the node from the possible owners list on the cluster resources. Install the SP. Add the node back to possible owners list afterwards.

    Once done...

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

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

  • RE: Database Mirroring Port Config.

    Jinu43 (8/16/2011)


    configured security( i already configured security)

    Sorry for the delay replying. I believe you may already have an endpoint configured on the mirror instance that is different to what you...

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

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

  • RE: How to Build a Windows Server 2008 Failover Cluster on Cheap Hardware for a Home Lab

    shew (8/24/2011)


    Does anyone on this forum have experience with building a Windows Server 2008 Failover Cluster on cheap hardware at home?

    Follow my 3 part guide on this site starting at...

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

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

Viewing 15 posts - 6,751 through 6,765 (of 9,241 total)