Forum Replies Created

Viewing 15 posts - 4,996 through 5,010 (of 7,164 total)

  • RE: XP_CMDSHELL gets disabled upon server reboot

    You may be able to use Policy Management to prevent it from being disabled. Are you on 2008 or higher? Have you used policies before? I know someone who uses...

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

  • RE: SQl Server SSIS Job Monitor

    This may help you for future executions: http://dtloggedexec.codeplex.com/%5B/url%5D

    DTLoggedExec provides an alternate to using DTExec for executing SSIS packages that can generate just about any logging information you like without adding...

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

  • RE: COMPATIBILITY_LEVEL question: Upgraded to 2008 R2... Sort of... or "Is there a tool that will tell me what this upgrade broke?"

    You can really compress your timeline by running a TSQL_replay trace on your production server while it is in 80 mode and then replaying the trace results against your dev...

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

  • RE: upgrading SQL SERVER 2005 Enterprise to 2008 R2

    Create a Solution in BIDS 2005 or Visual Studio 2005 (VS). Then add a SQL Server Integration Services Project to the Solution. Now add all 100 SSIS packages to the...

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

  • RE: Moving large files/backups across data centers.

    DoubleTake is worth a look. Throughput was far superior than Windows Copy. I cannot speak for it from an admin perspective though because the two shops I have been in...

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

  • RE: How to Create failover ssis package one server to anthor server

    SSIS is not a High Availability solution. Can you explain more about your environment and what you are trying to accomplish?

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

  • RE: SQL 2000 -2008 migration does it work ?

    pk2011 (12/16/2011)


    Hello all,

    Is it possible to migrate from SQL standard edition to SQL 2008 web edition, without having 2005 never used/installed in the system. In the DB there are...

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

  • RE: Invoke-PolicyEvaluation returns same result whether or not Policy was violated

    Try changing this:

    $db=gi sqlserver:\sql\D000XXX\default\databases\Northwind

    to this:

    $db=gi sqlserver:\sql\D000XXX\default

    After seeing how this changes the playing field in terms of what you evaluate policies against you may want to rename your variable too 😉

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

  • RE: XP_CMDSHELL gets disabled upon server reboot

    USE master ; --<< important: procs set to start automatically must reside in master

    SELECT *

    FROM sys.procedures

    WHERE is_auto_executed = 1 ;

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

  • RE: Copying users, roles and permission from one db to another

    In that case sys.database_principals and sys.database_role_members has all the metadata you need to build the commands that can add the Database Roles and Database Users to another database.

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

  • RE: Minimum permissions to allow access to SMO.Server.Databases.Users list

    Path of least resistance...gotcha. Happy you got a comfortable way forward 🙂

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

  • RE: Minimum permissions to allow access to SMO.Server.Databases.Users list

    geoffrey grierson (12/1/2011)


    Good morning Jason

    I did:

    USE master

    GO

    GRANT VIEW SERVER STATE TO [dom\acc]

    but the result is the same.

    Today I'll make a fresh start on the problem. No more googlebing for...

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

  • RE: how to call excel (2007/2010) macro in SSIS Package (2005/2008)

    I strongly encourage you to find an alternative way to do what you are attempting.

    From http://support.microsoft.com/kb/257757

    Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from...

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

  • RE: EXECUTE sproc permissions

    hindle.steve (12/8/2011)


    thanks for the explanation. so if the proc owner is different from the table owner for example then the caller will have to have SELECT permissions on the underlying...

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

  • RE: Deny access Question

    Dev (11/30/2011)


    ...the DENY takes precedence...

    Except in cases where Ownership Chaining is involved.

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

Viewing 15 posts - 4,996 through 5,010 (of 7,164 total)