Forum Replies Created

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

  • RE: Clustering with Database Mirroring Question...?

    From reading your post it sounds very much like you require AlwaysOn in SQL Server 2012, are you not able to make the upgrade and utilise the newer technology?

    Aside that...

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

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

  • RE: How to Find Table size?

    Since essentially all tables\indexes in SQL Server 2005 on are partitioned, to get down to the partition sizes you'll need to join sys.indexes, sys.partitions and sys.allocation_units.

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

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

  • RE: Clustering with Virtualization

    my guide, linked by Mohammed, shows you all you need to know

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

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

  • 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" 😉

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