Forum Replies Created

Viewing 15 posts - 61 through 75 (of 82 total)

  • RE: Unable to view a User's Effective Permissions

    Thom A (11/22/2016)


    What are the permissions of the account you are viewing this dialogue box from? Do you have permission to impersonate?

    As I said, no explicit permissions. The user...

  • RE: Strange issue with basic SSIS Package

    Phil Parkin (11/18/2016)


    planetmatt (11/18/2016)


    Phil Parkin (11/18/2016)


    I suspect that the ? is not a ? in the data ... it's some other non-printable character.

    This code snippet shows that ?+ is no...

  • RE: Strange issue with basic SSIS Package

    Phil Parkin (11/18/2016)


    I suspect that the ? is not a ? in the data ... it's some other non-printable character.

    This code snippet shows that ?+ is no problem:

    IF OBJECT_ID('tempdb..#test', 'U')...

  • RE: Strange issue with basic SSIS Package

    Another weird thing to throw in the mix.

    When examining the raw data in SQL, SELECTing the row in question with a SELECT * does not show the "?". Only...

  • RE: Strange issue with basic SSIS Package

    Phil Parkin (11/18/2016)


    planetmatt (11/18/2016)


    I have a simple package that takes data from a SPROC and puts it in a .CSV file.

    Until today, it ran without issue.

    The error it's now throwing...

  • RE: SSIS Job Proxy Best Practise

    Is this account separate from the one used as the SQL Agent Service "Log On As" Account?

  • RE: SSIS Job Proxy Best Practise

    So you have one Windows Account, One Credential,and One Proxy.

    This account then has read/write on any external file locations as needed by any SSIS package.

    Is this Windows account then used...

  • RE: SSIS Job Proxy Best Practise

    Jez-448386 (5/5/2016)


    Personally, I think this is overkill. Usually I have a single service account to run all SQL Agent jobs and ensure that job has appropriate permissions.

    If you are...

  • RE: LIKE with 2 searches

    Alan.B (3/11/2016)


    Try

    WHERE Item LIKE '%S' OR Item LIKE '%B'

    WHERE Item like '%[S,B]'

  • RE: Somebody explain Checkpoint to me

    Bill Talada (4/29/2015)


    I suspect you had a nested transaction. If you tried to test the script by stopping it, you may have created a nested transaction the second time...

  • RE: Somebody explain Checkpoint to me

    Lynn Pettis (4/29/2015)


    And can you have some down time to complete the deletion of data?

    There are 737million rows total. I need to delete all records related to a master...

  • RE: Cross Join

    Clever stuff, might give that a try. Comments about performance taken on board. Thanks chaps.

  • RE: Cross Join

    I had already considered using SSIS to move the smaller table to the other server and then performing the cross join in a OLEDB Source component. While this would...

  • RE: SQL Alert Anomaly

    SQLZ (11/3/2008)


    Are you sure you're looking at the right counter in perfmon and that you're alerting on the right counter?

    There's the SQLServer:CacheManager\Cache Hit Ratio and the SQLServer:BufferManager\Buffer Cache hit ratio?

    My...

  • RE: SQL 2005 Default Trace

    MANU (10/6/2008)


    Have you checked the default log file location where these files get created? Also, run select * from sys.traces and see under the path dispalyed in output of above...

Viewing 15 posts - 61 through 75 (of 82 total)