Forum Replies Created

Viewing 15 posts - 841 through 855 (of 3,232 total)

  • RE: Managing Stored Procedures

    I've done the same as Grant and Steve, although with a different source control tool. You have to build processes around your change control that everyone follows. Document...

    John Rowan

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

  • RE: filter data from two tables

    Given the new sample data that you've shown, what would you expect the results to look like?

    John Rowan

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

  • RE: Get logical/physical model of a database

    Ha, good one Seth!

    John Rowan

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

  • RE: filter data from two tables

    This is a simple LEFT OUTER JOIN:

    DECLARE @tableA TABLE (DealerId varchar(10), ISCI varchar(10))

    DECLARE @tableB TABLE (DealerId varchar(10), ISCI varchar(10))

    INSERT INTO @tableA

    SELECT 's021','1234' UNION ALL

    SELECT 's021','2354' UNION ALL

    SELECT 's021','2564'

    INSERT INTO @TableB

    SELECT...

    John Rowan

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

  • RE: Export to flat file errors - XML Data Type

    What data source are you using to the the XML column into the pipeline?

    John Rowan

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

  • RE: SSIS foreach Loop - creating dynamic log output files and sending email

    For the config file, only check the boxes of the items/variables that you want to be able to change from outside the package. I would imagine that most of...

    John Rowan

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

  • RE: SSIS foreach Loop - creating dynamic log output files and sending email

    I want to capture that failure message for any failing script and email that output file to the user group.

    If you've set up the script task inside the...

    John Rowan

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

  • RE: SSIS foreach Loop - creating dynamic log output files and sending email

    I am stuck with the event handler part and send mail task !

    Why the event handler has execute SQL task with a dummy statement ?

    Also the variables you mentioned...

    John Rowan

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

  • RE: SSIS foreach Loop - creating dynamic log output files and sending email

    First off, thanks for the detailed post. It is most helpful to know where you are at so we can make the appropriate adjustments and get you moving in...

    John Rowan

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

  • RE: SSIS foreach Loop - creating dynamic log output files and sending email

    Sorry for the delay on this, it kind of fell off my radar. The intent of my last question was to learn which control/data flow tasks you've used to...

    John Rowan

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

  • RE: UTF-8 Flat File

    It was the correct answer for a question that was never asked. Based on your original post, how can we tell what you've already tried, where your problem lies,...

    John Rowan

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

  • RE: How Can I Find Database A Connection is Made to

    Go to the Master database, under Programmability>>System Stored Procedures and find sys.sp_who2. You can review the code.

    John Rowan

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

  • RE: Stored Procedures that converts a table's column data type from char to nchar and varchar to nvarchar

    rahulsony111 (12/1/2009)


    i should use a stored procedure cause it will be used very often

    Once converted, it would not need done again. Just curious, why would this be something that...

    John Rowan

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

  • RE: How Can I Find Database A Connection is Made to

    From SSMS, run sp_who2. This will show all connections to the SQL instance, which DB they are connected to, the host ID, application name, and all other connection related...

    John Rowan

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

  • RE: UTF-8 Flat File

    In addition to what Sabya has said, maybe try to do this yourself and let us know where you need help. We're not here to do the work for...

    John Rowan

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

Viewing 15 posts - 841 through 855 (of 3,232 total)