Forum Replies Created

Viewing 15 posts - 7,141 through 7,155 (of 9,244 total)

  • RE: How to Add a Second Instance to a SQL Server 2008 Failover Cluster

    Sven Worm (4/17/2011)


    This documentation seems to be offline. Does anyone can get it online again ?

    Thanks

    Sven

    I have fixed the link for you, right click and download it to hard drive...

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

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

  • RE: msdb size growing!!!

    Sorry i do apologise, i forgot the WHERE clause :blush:

    Please execute this against MSDB and post results

    select object_name(object_id),

    (used_page_count * 8) / 1024 as TableSizeInMBs,

    row_count

    from sys.dm_db_partition_stats

    where index_id in (0,1)

    order...

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

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

  • RE: msdb size growing!!!

    samsql (4/15/2011)


    Thkz for the reply below are the details for one server msdb :- also there are more server where the size and count is more ...

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

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

  • RE: Building a new SQL2008 server, would like your input

    RAID10 requires an even number of drives.

    The best solution with 12 drives available would possibly be

    OS RAID1 (2...

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

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

  • RE: Script to delete old bak files in sql server 2008

    G.Sudhagar (4/13/2011)


    1)first step will delete old backup file based on ur need (days).

    you would be well advised to delete files AFTER a successful backup for obvious reasons

    TheHose

    I use a VB...

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

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

  • RE: Would you run SQLIO on a production server?

    SQLIO stress testing will primarily affect the SAN so no you wouldn't run it on production. These sorts of tests should be carried out before the Server and SAN are...

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

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

  • RE: SQL 2008R2 CLuster won't come online during install

    Andrew Clark-151434 (4/13/2011)


    Hello,

    Thanks for any replies, I have found the problem. Our AD replication wasn't working so any permission changes on AD accounts weren't replicating for about 13 hours. Once...

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

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

  • RE: SQL 2008 Recovery Models

    no need to take a FULL backup here to restart the log chain, a DIFFERENTIAL will suffice and allow subsequent transaction log backups

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

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

  • RE: SQLMAIL

    why are you bothering to offload this through SQL Server? Send mail directly from the app straight to the SMTP server using System.Net.Mail class, there is a MailMessage() object there...

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

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

  • RE: msdb size growing!!!

    Hi

    execute the following against MSDB and post the results

    select object_name(object_id),

    (used_page_count * 8) / 1024 as TableSizeInMBs,

    row_count

    from sys.dm_db_partition_stats

    order by row_count desc

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

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

  • RE: VMWare and Disk Based Backup/Restore without actual SQL Backup?

    SQLJocky (4/8/2011)


    has now moved to Avamar (disk based backup solution) for our backup and partial DR strategy.

    i'm guessing this interfaces with VCB and snapshots the VM's virtual disks!

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

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

  • RE: msdb size growing!!!

    the stored procedure

    sp_delete_backuphistory

    is used to trim the history tables. You can find details of this in Books Online

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

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

  • RE: I am starting to create SQL Server Cluster on 2 servers and on both one Warnng is coming.Should I start it?

    forsqlserver (4/11/2011)


    I am starting to create SQL Server Cluster on 2 servers and on both one Warnng is coming.Should I start it?

    [highlight=#ffff11]Windows detected your registry file is still in use...

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

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

  • RE: Can I create SQL Server Cluster without AD/DNS.

    clustering requires AD and AD is dependant upon DNS, they are all tied very neatly together.

    Just out of interest, why do you ask if you can implement clustering without these...

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

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

  • RE: SQL service agent Account

    Further to what Jeffrey has said, you get the option during the SQL Server 2008 install to use service account SID based security or traditional global\local group security. Obviously service...

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

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

Viewing 15 posts - 7,141 through 7,155 (of 9,244 total)