Forum Replies Created

Viewing 15 posts - 6,901 through 6,915 (of 9,241 total)

  • RE: Migrating Databases from SQL 7 to SQL 2005?

    you're welcome

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

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

  • RE: Can SQL 2005 Standard and SQL 2005 Enterprise coexist on the same machine?

    Link here 😉

    😎

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

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

  • RE: backup file name

    This should get you started

    SET NOCOUNT ON

    --Check if the temp table exists, if it does cleanup!

    IF (object_id('tempdb..#sysdbs')) IS NOT NULL

    BEGIN

    ...

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

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

  • RE: Can SQL 2005 Standard and SQL 2005 Enterprise coexist on the same machine?

    perfectly ok for the 2 to co exist

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

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

  • RE: Migrating Databases from SQL 7 to SQL 2005?

    SQL7 databases may be directly attached\restored to SQL Server 2005 with no step between. When upgrading to SQL Server 2008 you would need to go through either SQL Server 2000...

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

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

  • RE: Hard Drive space issue when installing SQL server failover clustering

    logicinside22 (7/14/2011)


    Trying to install SQL server failover clustering on windows server 2008 R2 Enterprise 64 bit using VM ware.

    created clusterdc , node1,node2 virtual machine names on VMware.

    Allocated 15GB hard drive...

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

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

  • RE: mirroring

    If mirroring in a workgroup use this article to help you set it up

    http://blogs.msdn.com/b/suhde/archive/2009/07/13/step-by-step-guide-to-configure-database-mirroring-between-sql-server-instances-in-a-workgroup.aspx

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

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

  • RE: GRANT Issues

    You asked

    yoffes (7/14/2011)


    What are the least set of permissions that will allow this?

    Granting at the table object level is least permission, granting at schema is greater scope!

    This looks neater

    yoffes (7/14/2011)


    GRANT...

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

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

  • RE: Error while importing from Access DB to SQL using SSMS wizard

    validate and cleanse the column data in the source table

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

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

  • RE: GRANT Issues

    Grant select, insert, update, delete on object::dbo.test2 to testrole

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

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

  • RE: login transfers

    to configure mirroring for a workgroup see the following blog post

    http://blogs.msdn.com/b/suhde/archive/2009/07/13/step-by-step-guide-to-configure-database-mirroring-between-sql-server-instances-in-a-workgroup.aspx

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

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

  • RE: Can I copy ONLY the .mdf file to another server, to move a database? Can I make the data file consistent w/o the T-Log?

    GilaMonster (7/13/2011)


    Honestly, I'd be taking backups and mirroring the backups.

    I'm with Gail here, I think this would be the best solution

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

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

  • RE: Help for rebuild index

    subbkarth (7/14/2011)


    In one of my production server scheduled a maintenance plan for rebuild index on 1 am.

    suddenly i'm getting this error:

    Here is the error

    Executing the query "ALTER INDEX [work_package_calendar_work_package_IDX] ON...

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

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

  • RE: Truncating transaction log

    GilaMonster (7/14/2011)


    so no point in time recovery until, you take another full backup.

    or a differential 😉

    If the 2 hourly backups are not managing the log sufficiently increase it to...

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

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

  • RE: Question on Database Mirrorring

    not something i have ever seen before, the databases will synchronise when they both restart.

    Build yourself a couple of virtual machines and try it 😉

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

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

Viewing 15 posts - 6,901 through 6,915 (of 9,241 total)