Forum Replies Created

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

  • RE: exec master.dbo.xp_cmdshell

    LOOKUP_BI-756009 (12/17/2012)


    Restarting the server fixed the problem. Did not change anything, still not sure how that happend. Thank You

    I had this issue many many times on SQL 2005 SP4 running...

  • RE: Dropped connection during Excel VBA

    Is this an Excel VBA question or an SSIS question? Or something else?

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

    ...

  • RE: Export data failed?

    Post the complete result of this:

    USE [YourDatabase];

    DBCC CHECKDB WITH NO_INFOMSGS;

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

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

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

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

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

  • 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

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

  • 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

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

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

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

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