Forum Replies Created

Viewing 15 posts - 7,216 through 7,230 (of 9,244 total)

  • RE: Can there be two sql servers on a single computer?

    invaliddba (3/28/2011)


    An instance and a sql server are not the same though.

    Microsoft refer to each instance as an instance of SQL Server 😉

    They are one of the same

  • RE: Clustering/Alias question

    ok so you have a TCP alias setup as SQL03 which points to SQL03,1433 or SQL03\SQL03 does this make sense?

    Open sql server configuration manager and go to SQL Native Client...

  • RE: Clustering/Alias question

    check the following registry key and post the values

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\Client\ConnectTo

    Also check this for the port number in use by the instance

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.x\MSSQLServer\SuperSocketNetLib\Tcp\IPAll

  • RE: Error while Detaching / Attaching a Database

    paulnamroud (3/28/2011)


    Thank you Perry

    I give it a right to the user name SQLServerMSSQLUser$xxx and now It works fine!

    That looks like one of the local groups created during the SQL...

  • RE: Clustering/Alias question

    Windows 2003 or 2008 cluster?

    What does this return

    SELECT SERVERPROPERTY('Servername')

  • RE: Clustering/Alias question

    Kenneth

    what does the following return when executed against the instance

    SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS') AS ComputerName,

    CASE (SELECT SERVERPROPERTY('ISCLUSTERED'))

    WHEN 1 THEN 'VirtualName = ' + CAST(SERVERPROPERTY('MachineName') AS NVARCHAR(25))

    WHEN 0 THEN 'Not Clustered'

    END AS VirtualNetworkName,

    ISNULL(SERVERPROPERTY('Instancename'),...

  • RE: Error while Detaching / Attaching a Database

    paulnamroud (3/28/2011)


    First, I copied the files ".mdf" and ".ldf" from the old folder E:\Data to the new folder E:\MSSQL\Data. And i make sure that these files are NOT flagged as...

  • RE: Restore progress

    SQL Guy 1 (3/28/2011)


    That's amazing! Thanks a lot, Perry. Actually I can use it not only for backups or restores, but for anything else.

    You're welcome

  • RE: Restore progress

    This should help

    selectst.text,

    command,

    db_name(database_id),

    start_time,

    DATEADD(ms,estimated_completion_time,

    ...

  • RE: Database Files on Different Logical Drives!

    Abrar Ahmad_ (3/22/2011)


    1. Is there any performance benefit of segregating database files on different logical drives (physically single storage medium)?

    The only gain here is for administration purposes, no performance...

  • RE: Clustering SQL 2008 Hardware VM

    Hi UMG

    It's to large to post as an attachment I can email to people as requested

  • RE: Log shipping in SQL Server 2008 and 2008 R2

    what "other boxes" are you referring too

  • RE: Clustering SQL 2008 Hardware VM

    suri.yalamanchili (3/17/2011)


    I am running three VM's in all on my laptop.

    You should have 4 VMs

    NAS VM

    Domain Controller VM

    2 x Cluster nodes

    suri.yalamanchili (3/17/2011)


    I am using Sun VirtualBox for the VM's Two...

  • RE: How to identify backup files?

    I would use

    Full backups .BAK

    Diff backups .DIF

    Log backups .TRN

  • RE: possible to restore full backup of a different database?

    odeonkreel (3/14/2011)


    I have no need or desire to retain anything in db2 when I restore db1 into db2.

    so, as already stated when restoring DB1 over DB2 use the REPLACE option...

Viewing 15 posts - 7,216 through 7,230 (of 9,244 total)