Forum Replies Created

Viewing 15 posts - 3,361 through 3,375 (of 7,164 total)

  • RE: user mapped as dbo

    That happens when you change the db owner.

    What does this return:

    SELECT SUSER_SNAME(owner_sid)

    FROM sys.databases

    WHERE name = 'yourDatabase';

    I think you'll find that it returns CUSTOMERCARE\dscott,...

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

  • RE: Powershell for network path

    bwperrin (8/20/2012)


    Yes, I did the following from a SQL Agent PowerShell job step:

    $src = "\\serverpath\filename"

    $dst = "e:\path\filename"

    Copy-item $src -destination $dst

    and still...

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

  • RE: user mapped as dbo

    Things are not adding up. Can you post a screenshot of what you're seeing?

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

  • RE: user mapped as dbo

    sage8 (8/20/2012)


    The result for:

    USE [your_database];

    GO

    SELECT SUSER_NAME(principal_id)

    FROM sys.database_principals

    WHERE name = 'dbo';

    GO

    is 'sa'

    OK, that is what it should be. Nothing to be concerned about. Since...

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

  • RE: Using the Konesans File Watcher Task in SSIS to Process Data Files

    Hello Tony, thanks for reading my article. I'll say this, in just starting out with SSIS you have a lot of ramping up to do. You'll need to cover not...

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

  • RE: create procedure with execute as

    Thanks for posting back. Could you post the code that worked for you? Personally I am curious to see what finally worked but maybe others can benefit too.

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

  • RE: Using the WMI Event Watcher Task in SSIS to Process Data Files

    mtassin (8/17/2012)


    I'm working with this.... I have a question

    So I'm trying to watch for new files... when I see one I kick into a For Each Loop Container that processes...

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

  • RE: create procedure with execute as

    Chuck 17099 (8/17/2012)


    I have decided to use a SQL solution as it does not require any software to be installed on user workstations.

    Are you sure? For the record:

    If they have...

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

  • RE: whai is the need of adding T845 oarameter in startup in sql server

    If you're looking for LPIM on a 32-bit system enable AWE (applies to all 32-bit systems, even ones with < 4GB). Adding startup option -T845 is unnecessary on a 32-bit...

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

  • RE: Powershell for network path

    bwperrin (8/17/2012)


    Same problem for me - did you ever get this figured out?

    Did you try the code I provided?

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

  • RE: Sending remote attachments using sp_send_dbmail

    As a side note, having your SQL Server run as a Domain Admin is quite dangerous considering you're about to open this up for users to send emails with attachments....

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

  • RE: Sending remote attachments using sp_send_dbmail

    dba0419 (8/17/2012)


    There is only 1 login being used (for testing this issue) and that login has full control of the network share and is in the DatabaseMailUserRole Database Role.

    Example:

    EXEC msdb.dbo.sp_send_dbmail...

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

  • RE: Sending remote attachments using sp_send_dbmail

    It has nothing to do with the caller, and everything to do with the SQL Server service account. When you try using Database Mail the attachments need to be accessible...

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

  • RE: Today's Random Word!

    rhythmk (8/16/2012)


    JAZZ Master (8/16/2012)


    Cliff Jones (8/16/2012)


    Daniel Bowlin (8/16/2012)


    Cliff Jones (8/16/2012)


    Ray K (8/16/2012)


    rhythmk (8/15/2012)


    Daniel Bowlin (8/15/2012)


    content

    Satisfied

    Satiated

    Saturated

    Color

    Scheme

    Plot

    Story

    Epic

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

  • RE: user mapped as dbo

    Perry Whittle (8/16/2012)


    Correct you can't drop the user, you change the mapping.

    You cannot change the login mapped to the dbo user either...at least I could not on 2005, 2008 R2...

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

Viewing 15 posts - 3,361 through 3,375 (of 7,164 total)