Forum Replies Created

Viewing 15 posts - 2,626 through 2,640 (of 7,164 total)

  • RE: Replication from 2005 to 2012

    What does this say when run against the Publisher, the Distributor and the Subscriber:

    SELECT SERVERPROPERTY('Edition') AS Edition,

    SERVERPROPERTY('ProductVersion') AS ProductVersion,

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Export data failed?

    Post the complete result of this:

    USE [YourDatabase];

    DBCC CHECKDB WITH NO_INFOMSGS;

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How implement object orientation features in sql server?

    tz.bahrami (12/27/2012)


    Thanks alot.

    How about polymorphism in sql? Could we use stored procedures for polymorphism?

    And for nested relationships can we define an attribute as OId and use it in a select...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: ALTER AUTHORIZATION hangs and causes blocking

    In order to change the owner of a database you must have exclusive access to it. Restarting the SQL Server service will not help if the application immediately reconnects to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Query local SSMS server group with Powershell?

    MG-148046 (12/27/2012)


    You could use the stucture available in SQLPS. Set your location to SQLSERVER:\SQLRegistration\Database Engine Server Group\<your group name> then set a variable equal to get-childitem and do a foreach...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: MAXDOP setting

    sotn (12/27/2012)


    For NUMA harware, every SQL Server I've looked at, in processors, says NUMA node 0 etc and then split into the cores/processors. does this mean it is NUMA enabled?

    More...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: JobName Not found error

    Progress. From the remote server what do you get when you run these:

    EXEC('SELECT ORIGINAL_LOGIN() as logged_in_login;') AT [ServerName];

    EXEC('SELECT * FROM msdb.dbo.sysjobs WHERE name = ''8A427655-9A6E-43F0-9A28-95C7A8F781B1'';') AT [ServerName];

    Did the first one...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How implement object orientation features in sql server?

    Here is some available reading on the topic that may help you gain a deeper understanding of what things to consider before implementing your database:

    Object-relational impedance mismatch, From Wikipedia

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Concurrency handling

    S_Kumar_S (12/26/2012)


    Hi All

    I have a table with identity column as PK.It is accessed by millions of users at a given time. Now there are 2 columns for which if there...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Today's Random Word!

    SQLRNNR (12/26/2012)


    Sean Lange (12/26/2012)


    SQLRNNR (12/26/2012)


    Daniel Bowlin (12/24/2012)


    wrapping

    unwrapping

    cleanup

    break/fix

    patch

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: MAXDOP setting

    TheSQLGuru (12/25/2012)


    opc.three (12/24/2012)


    It should say "physical cores" instead of "physical processors." I would set it to 6 for the number of physical cores per NUMA node. If you're still seeing...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: JobName Not found error

    Mac1986 (12/24/2012)


    I ran the below script and got the Network related error respectively. I wonder why it takes 2 mins to runt his small script.

    EXECUTE AS LOGIN = 'Redmond\MyServiceAccount'

    GO

    SELECT SUSER_SNAME()

    GO

    EXEC...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Powershell execution error

    Chances are the path "%systemroot%\System32\WindowsPowerShell\v1.0\" was removed from the PATH system environment variable. Removing the path to powershell.exe from the PATH variable made it impossible for you to refer to...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Query local SSMS server group with Powershell?

    Have you heard of Central Management Server (CMS)? It supports the "interact with each server in a server group from PowerShell" functionality that I think you are after.

    If setting up...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: MAXDOP setting

    It should say "physical cores" instead of "physical processors." I would set it to 6 for the number of physical cores per NUMA node. If you're still seeing too much...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 2,626 through 2,640 (of 7,164 total)