Forum Replies Created

Viewing 15 posts - 4,516 through 4,530 (of 9,244 total)

  • RE: Replication between SQL 08 r2 enterprise & standard

    sql_Reporter (12/1/2012)


    Hey probably a very common question but can you Replication between SQL 08 r2 enterprise & standard editions ?

    Thanks

    Check this and this

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

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

  • RE: how to shrink logfile ?

    ravi@sql (12/3/2012)


    recovery_model_desclog_reuse_wait_desc

    SIMPLE NOTHING

    What size is...

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

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

  • RE: how to shrink logfile ?

    if your database is using the full or bulk logged recovery model take a transaction log backup using the following

    BACKUP LOG [MYDB] TO DISK = 'some drive\some path\mydb.trn'

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

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

  • RE: Operating mode change in mirrroring

    shohelr2003 (12/3/2012)


    I configured mirroring with High safety with automatic failover (synchronous) option.

    Now I want to change my operating mode to High Performance (Asynchronous) but getting all options disabled.

    How can I...

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

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

  • RE: Tip: Resetting Identity Fields

    You can just obtain the max id value after toe deletion by using

    select max(col_id) from table_name

    Then use this to determine the reseed value.

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

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

  • RE: freeNAS LUNs disappear when running Win Cluster check

    cracked it have you? 😉

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

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

  • RE: freeNAS LUNs disappear when running Win Cluster check

    You must ensure that while no cluster is formed that the 2 nodes do not try to access the disks at once otherwise corruption occurs. Simply hold off exposing the...

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

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

  • RE: log shipping and transaction log

    sdpages (11/30/2012)


    Will these trans log backup be used with my Weekly Full and Daily Diff backups for a Restore ?

    Please suggest.

    thanks.

    yes, the log backups taken by the LS...

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

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

  • RE: How to find a column in a DB ?

    SQL SERVER ROOKIE (11/30/2012)


    Thank you guys,And how to look for tables in a DB lets say any table with the word "SHIPPING"

    Regards

    SM

    This

    selectobject_name(object_id) AS TableName

    from sys.columns

    where object_name(object_id) like '%table name string%'

    group...

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

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

  • RE: log shipping and transaction log

    Your post isn't clear but here goes

    if you have a log shipping plan in action, ensure that the only transaction log backups are taken by the log shipping backup job...

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

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

  • RE: SQL backup to network drive

    if using local system you need to allow the machine account access to the network share

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

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

  • RE: freeNAS LUNs disappear when running Win Cluster check

    What are the specs for each VM?

    You have to bear in mind that the host will have an overhead for its OS and the VMWare Workstation Hypervisor before you even...

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

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

  • RE: freeNAS LUNs disappear when running Win Cluster check

    you'll typically see this when there aren't enough resources on the host machine to service all the VMs. Can you supply the full spec of your VMWare host?

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

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

  • RE: How to find a column in a DB ?

    This is fairly straightforward

    selectobject_name(object_id) AS TableName

    , name AS ColumnName

    from sys.columns

    where name like '%columnname string%'

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

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

  • RE: Database Integrity and backup job failing.

    abhishekkulkarni1284 (11/29/2012)


    Hi, We have a Database Integrity Job and Backup Job that are scheduled in a gap of 6 hrs, with the DI job kicking off first. However conidering the...

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

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

Viewing 15 posts - 4,516 through 4,530 (of 9,244 total)