Forum Replies Created

Viewing 15 posts - 5,386 through 5,400 (of 9,241 total)

  • RE: Database ownership best practices

    webrunner (7/2/2012)


    Hi everyone,

    From a security perspective, is it advised or discouraged for non-DBA users to have owner (db_owner or equivalent permissions) to some or all databases on a SQL Server?...

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

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

  • RE: Poershell script to chechk the db owner ?

    i'm a dinosaur and prefer good old T-SQL 🙂

    USE [SomeDB]

    GO

    SELECT 'The database owner is: ' + QUOTENAME(SUSER_SNAME(dp.sid))

    FROM sys.database_principals dp

    WHERE dp.name = 'dbo'

    GO

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

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

  • RE: Failback

    failback is a windows cluster feature to enable a clustered resource (not just SQL Server) to move back to its preferred location after a failover has occurred. On resources such...

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

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

  • RE: Install sql server 2005 from command prompt

    only in 2008 set up onwards can you specify a userdb data, log and a backup directory.

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

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

  • RE: Sql server failover cluster losing host routes after failover

    Codezilla-292868 (6/29/2012)


    i get this error when there is a job running on a linked server:

    Named Pipes Provider: Could not open a connection to SQL Server

    the job could not connect...

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

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

  • RE: file group reached 85% space

    anthony.green (7/2/2012)


    Perry Whittle (7/2/2012)


    anthony.green (7/2/2012)


    add another file to the filegroup that way SQL will stripe the data across both files in an equal proportion

    No, it won't, as the remaining files...

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

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

  • RE: Unable to failover the services on to one of the node(node 7) in an 8 node Cluster

    looks like disk issues.

    Which nodes does the instance come online on?

    Have you checked that all required storage has been presented to all the nodes that are participating in the...

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

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

  • RE: Clustering set up problem

    surma.sql (7/2/2012)


    I had a couple questions I encountered over the weekend when I tried migrating the database from the old database cluster 10.15.1.124 to the new cluster 10.15.1.174. The first...

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

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

  • RE: file group reached 85% space

    anthony.green (7/2/2012)


    add another file to the filegroup that way SQL will stripe the data across both files in an equal proportion

    No, it won't, as the remaining files in the group...

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

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

  • RE: How to determine when column stats are updated?

    Mindy Hreczuck (6/25/2012)


    I have index statistics taken care of by a scripted maintenance plan but I'm going to be setting up a separate plan to take care of updating the...

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

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

  • RE: installing multiple instance on same IP address and port

    To add further, the IP and port number must be a unique combination for the installed instances, the following would be valid

    Instance1 ...

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

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

  • RE: How to dicrease the ram utilization

    gantavasu (6/29/2012)


    We are having 28gb ram in that after installing the sql server it is occupying 10 gb Ram.

    here i want to set this to 2gb.

    Wow, what other application do...

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

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

  • RE: Linked server setup on SQL Cluster

    muthyala_51 (6/29/2012)


    I am new to clustering.

    Do we need to create linked server on both the nodes ? and how about the jobs?

    No, they are created at the instance level, when...

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

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

  • RE: clustering on VM machines and Physical nodes

    This all depends entirely on how you will present the storage to the servers. Is this a new cluster or adding a virtual to an existing cluster.

    Which virtualisation platform are...

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

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

  • RE: Sql server failover cluster losing host routes after failover

    Codezilla-292868 (6/28/2012)


    We have one instance instance 1 running on node A. And I have an instance 2 running on node B.

    If you only have 2 nodes in the cluster this...

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

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

Viewing 15 posts - 5,386 through 5,400 (of 9,241 total)