Forum Replies Created

Viewing 15 posts - 5,611 through 5,625 (of 9,253 total)

  • RE: upgrade path to sql server 2012 entreprise

    zetchi (5/1/2012)


    is there anything special to do or to install before installing sp1 ?

    thank you

    apart from the obvious, check you have backups before starting, no. Install the service pack and...

  • RE: Backups and log shipping

    dixon_dwayne (4/30/2012)


    Question is: after initial full backup on prod box and all the transaction logs created on prod box, do I need to keep them or can they be...

  • RE: upgrade path to sql server 2012 entreprise

    check this link on the Microsoft website

  • RE: RAID and Its impact on your SQL performance

    derek.colley (5/1/2012)


    Would have been nice to explore the topic of 1) virtualisation and 2) SANs and how the IOPS rates differ when using these different technologies. Any more articles...

  • RE: RAID and Its impact on your SQL performance

    Nice article, incidentally RAID 1+0 and 0+1 are not identical. As 0+1 is essentially 2 stripes the loss of 1 disk in each portion of the array is catastrophic. 1+0...

  • RE: Prerequisites for clustering

    mohan.bndr (4/29/2012)


    Hi,

    Can i know what are the prerequisites for Cluster Environment please....

    Thanks,

    Windows Server 2008 Enterprise or above.

    Sufficient shared storage solution.

    Identical node hardware

  • RE: Why is BACKUP DATABASE working for Transaction Log backups?

    Hans Lindgren (4/30/2012)


    should require a RESTORE LOG and not a RESTORE DATABASE.

    Anyone knows why this seems to work?

    That's because the command that will run is a log restore, i ran...

  • RE: Can you restore a 2008 DB to 2005?

    Dev (4/29/2012)


    It would be lot easier than Export / Import Data Task.

    huh, how do you work that out, they both have the same end result, execute an SSIS package!!

  • RE: Database log file changed name

    wmlbill (4/26/2012)


    SQL Server 2008 log file named changed

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

    Hi all,

    Some how the log file name on one of my databases changed from dbname_log.ldf to dbname_1.LDF Can anyone explain why this happened?...

  • RE: get all tables size and rows

    use this

    selectobject_name(i.object_id) as TableName

    , ISNULL(i.name, 'HEAP') as IndexName

    , i.index_id as IndexID

    , i.type_desc as IndexType

    , p.partition_number as PartitionNo

    , p.rows as NumRows

    , au.type_desc as InType

    , au.total_pages as NumPages

    , au.total_pages / 128 as...

  • RE: Run SQL Server Scripts using C#

    mark.harby (4/27/2012)


    Should really be using SMO for this sort of thing.

    IMHO

    +1

  • RE: get all tables size and rows

    Rohit, you need to join allocation_units on the correct columns, let me find my script and post it back shortly

  • RE: Run SQL Server Scripts using C#

    My preference would be to invoke the SMO objects directly within C# to backup the database

  • RE: SQLVDI and then Terminate Unexpectedly

    Fraggle-805517 (4/25/2012)


    rudy - Doctor "X" (4/25/2012)


    a few questions ...

    How much RAM on the Windows side ?

    How much RAM is allocated to SQL Server ?

    Are you using any startup trace flags...

  • RE: WAN failover

    gregtm (4/25/2012)


    It depends, if the replication technology sync's accounts...etc then Database. if not Server level.

    accounts are not synced thats a manual process, so what it is you are trying to...

Viewing 15 posts - 5,611 through 5,625 (of 9,253 total)