Forum Replies Created

Viewing 15 posts - 106 through 120 (of 405 total)

  • RE: SSIS: Best way to Archive production DB

    If it is same server, it is good to use TSQL as Eric suggested. If it across servers, you can even use a data flow to leverage the SSIS pipeline...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: faster index rebuild from prod server verse local computer.

    What do you mean when you run the rebuild in local? Do you have a copy of the same database in your developer workstation/ laptop?

    If that is the case...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: When does locking START?

    Delete uses exclusive locks. Definitely tuning your where clause will help.

    The dynamic SQL may give you a tough time though.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: I am really getting depressed

    First, stop having negative thoughts, that will only harm you!

    As Jeff pointed out, with a clear head, list out few things that you can work on and take some action.

    Read...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Filtering within a group or figuring out how to loop through results

    ChrisM@Work (6/3/2016)


    SELECT m.*

    FROM mytable m

    WHERE EXISTS (

    SELECT 1

    FROM mytable i

    WHERE i.cst_org_name_dn = m.cst_org_name_dn

    AND i.mbt_code = 'EM')

    AND m.mbt_code <> 'EM'

    Yes. And if at all there are more possible...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: FileStream (FS) associated files access

    Yup. Filestream supports only window authentication. But there is a workaround though.

    http://www.sqlskills.com/blogs/bobb/using-filestream-streaming-io-and-sql-logins-with-impersonation/

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Pattern Matching 101

    John Mitchell-245523 (6/3/2016)


    I think that's about as concise as you're going to get it. As you'll have noticed, string manipulation isn't one of T-SQL's strengths. If you're going...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: select * from Exceptions$

    I cant find anything wrong in the function assuming you are using this in your catch block. How are you handling the catch for this insert. Are you getting any...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: select * from Exceptions$

    It is the name of the sheet in the excel, example if you have multiple sheets, each one of them can be accessed as a table individually.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server Agent stopping automatically in SQL Server 2016 Cluster

    From your first reply it looks like shared memory is not enabled. For connections connecting locally, SQL server must be using shared memory protocol. Have you tried enabling this?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server Agent stopping automatically in SQL Server 2016 Cluster

    A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not found or not accessible.

    I think this clearly says the cant see the...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server Agent stopping automatically in SQL Server 2016 Cluster

    1) Are you able to access the database instance from a remote SSMS ?

    2) Are you using any aliases in the SQL Agent Properties-Connection?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SQL Server Agent stopping automatically in SQL Server 2016 Cluster

    Is the browser service running?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Looking for a way to find a process/trigger/whatever that is removing entries from a table

    Have you tried running the SQL Profiler?

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: T-SQL aggregating

    Nice, catch, edited and added group by if at all OP is interested still.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 106 through 120 (of 405 total)