Forum Replies Created

Viewing 15 posts - 10,366 through 10,380 (of 19,560 total)

  • RE: Get username...

    SpectralGhost (4/22/2011)


    They're not using all the same Windows IDs though, so I would want to know what Windows domain account made a change. Also, we are not on static IPs,...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Get username...

    Since they all use the same ID, you would be better served to trap the source IP. With the sourceIP, you can at least track back to the workstation...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Not Able to fire Command Line due to Space in the Directory Name

    Try the following idea:

    declare @cmdvarchar(256)

    ,@Drivevarchar(10)

    ,@Pathvarchar(256)

    Set @cmd = 'dir'

    Set @drive = 'C:\'

    Set @Path = 'Program Files\Common Files'

    if exists (select CHARINDEX(@path,' ',1))

    Begin

    Set @Path = '"' + REPLACE(@path,'\','"\"') + '"'

    End

    Set @cmd = @cmd...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: NEED HELP= Monthly SQL database growth calculation script

    How are you populating data into this table?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Not Able to fire Command Line due to Space in the Directory Name

    Here appears to be the problem:

    "C:\Program Files (x86)\CoreFTP\coreftp.execoreftp.exe" -O

    You set

    set @CoreFTPExeDirectory = 'C:\Program Files (x86)\CoreFTP\coreftp.exe'

    And then in your string you add coreftp.exe again without a space.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Script all indexes as CREATE INDEX statements

    Wow this script has really come a long way - even better than the last time I looked. I'm gonna need to compare to a different script I have...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: MAC OS X ODBC driver?

    Try this one.

    http://docs.openlinksw.com/st/osxliteconf.html

    Download instructions:

    http://docs.openlinksw.com/st/downloading.html

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Configure SQL Server Agent Mail to Use Database Mail (T-SQL?)

    Yes.

    USE [msdb]

    GO

    EXEC msdb.dbo.sp_set_sqlagent_properties @email_save_in_sent_folder=1

    GO

    EXEC master.dbo.xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent', N'UseDatabaseMail', N'REG_DWORD', 1

    GO

    EXEC master.dbo.xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent', N'DatabaseMailProfile', N'REG_SZ', N''

    GO

    This code was retrieved by hitting the script button on the Agent Properties Alert System...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: grant permissions to a user

    does it have to be the truncate table or will delete work for this as well?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Running SSMS after AD account is disabled

    BTW - great question.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Running SSMS after AD account is disabled

    Jason Shadonix (4/22/2011)


    Shouldn't you also disable the user in SQL? (making sure you aren't dropping the only sysadmin)

    If that user's account has been added as a login individually -...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    EC2

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    New SQLPeople Interview posted: http://bit.ly/eFMj6C

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Creating templates for use in BIDS (SQL Spackle)

    Great tips Wayne - thanks

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Service Broker

    Good question

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 10,366 through 10,380 (of 19,560 total)