Forum Replies Created

Viewing 15 posts - 3,601 through 3,615 (of 7,504 total)

  • RE: DAC issue

    Oh, you should !

    Why ?

    - bugs have been cleaned up

    - new features have been added (SSB, logon triggers,..)

    - performance optimisations

    - SSMS menu items have been shifted around (SP2) :sick:...

  • RE: DAC issue

    What service pack is your sqlinstance on ?

    Select Serverproperty( 'ComputerNamePhysicalNetBIOS' ) as ComputerNamePhysicalNetBIOS

    , Serverproperty( 'Edition' ) as Edition

    , Serverproperty( 'InstanceName' ) as InstanceName

    , Serverproperty(...

  • RE: DAC issue

    Did you change the SAC connection from localhost to the logical server name of your sqlserver instance ?

    e.g. mysqlserver\myinstance you should connect to mysqlserver.

  • RE: Composite primary key & auto increment problem

    Why do you want the dependancy of both pk columns?

    - an identity column auto increments its value by the increment value. If not tampered with that definition, it will generate...

  • RE: DAC issue

    did you try this in SSMS:

    EXEC sp_configure 'remote admin connections', 1;

    GO

    RECONFIGURE;

    GO

  • RE: DAC issue

    With clustering stuff, many thing must be managed using cluster administrator!

    What are you looking for ? (With regards to instance management)

  • RE: precautions to be taken

    GilaMonster (7/2/2009)


    ALZDBA (7/2/2009)


    Keep prod and dev data on separate instances !

    Keep prod and dev on different servers!

    Whenever possible indeed !

    OP stated

    ..dev server is gng to decomission soon ..

    I...

  • RE: Database Does Not Show Offline with SQL

    That is strange indeed.

    Double check if you are trying to move the correct db-files. (they can have any name with no "link" to the db itself)

    Check if there are still...

  • RE: Value of a primary key

    I'm totally with Lynn here :w00t:

    One other thought of the day:

    Whay are you defining the clustering index on a 3-column ix ?

    - Are those columns always used (all 3...

  • RE: precautions to be taken

    I'm with PaulB's suggestion !

    Keep prod and dev data on separate instances !

  • RE: Database Does Not Show Offline with SQL

    it may need some time to actually take it offline.

    It will no longer accept new connections/commands for that db.

    But it may need to complete the offload, taking some time.

  • RE: 4 table join on a linked server taking too long... Is there a best practice in this sitch?

    Maybe just create a view (on the remote server) and query that.

    Test it and see what the effects are.

  • RE: How can I allow multiple users to manage SQL Server Jobs

    Marcus Wilkinson (6/30/2009)


    Thanks ALZDBA.

    All my jobs todate have been owned by the same service account that has local admin rights.

    Ok, to comfirm, now I'm using a proxy and a different...

  • RE: How to recover my "sa" password??

    hi_abhay78 (6/30/2009)


    Its good to try this option .Once you are the Admin on the server , you can do anything ..But you messed big time my friend 🙂 ...this is...

  • RE: 4 table join on a linked server taking too long... Is there a best practice in this sitch?

    get rid of the linked server !

    Why: query stability !

    Keep in mind if sqlserver cannot find a "by default" good plan, it may pull over all data of the...

Viewing 15 posts - 3,601 through 3,615 (of 7,504 total)