Forum Replies Created

Viewing 15 posts - 3,586 through 3,600 (of 7,496 total)

  • RE: Aligned and non-aligned Partition Indexex

    - With aligned indexes, sql will take the most advantage of the mechanisme when querying partitioned objects. (because the indexes will basically have the same algorithm applied internally, so in...

  • RE: The Worst Advice

    Just some quotes out of the field :

    - don't implement DRI, because that will only slow you down !

    (Your application will have control anyway)

    - Remove DRI, this way...

  • RE: Copy database using SQL 2005

    What extra info is given with your error number ?

    I suggest to use the "regular" restore scenario.

    Create a backup of the original db using

    backup database xyz to disk=c:\temp\mybackup.bak' with...

  • RE: Restore deleted SQL Server agent job

    this is one reason why we script all our jobs on a weekly basis :Whistling:

    What you could do is : ( ON A test SERVER IF YOU CAN ! )

    -...

  • RE: Partitioning problem

    (11 row(s) affected) (94 row(s) affected) (8 row(s) affected) (94 row(s) affected)

    Msg 7726, Level 16, State 1, Line 38 Partition column 'RgValue' has data type varchar(36) which is different...

  • RE: DAC issue

    Just another thought: You are at the console, or are using a remote desktop solution to run SAC, right ?

    We now only have SP3 instances with sql2005 and are not...

  • RE: Undeclared variable error messege problem

    Try this:

    SET @bcpCommand = 'bcp " select ' + @CTX_TRAILER +' " queryout "'

    Why aren't you using the T-SQL "Backup database" command with a SQLCMD ?

  • 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...

Viewing 15 posts - 3,586 through 3,600 (of 7,496 total)