Forum Replies Created

Viewing 15 posts - 1,411 through 1,425 (of 3,232 total)

  • RE: Looping Through Tables as Input to SP

    Happy to help.

    John Rowan

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

  • RE: Loop Through Tables as an Input to SP

    Please don't cross post.

    Continue this thread here: http://www.sqlservercentral.com/Forums/Topic732456-147-1.aspx

    John Rowan

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

  • RE: Looping Through Tables as Input to SP

    Step 1: Execute SQL Step - SELECT Col1, Col2, Col3 FROM YourTable WHERE........

    -- Result Set = Full Result Set

    -- Result Set tab...

    John Rowan

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

  • RE: ForEach container specifying files using NOT operator?

    Yes, if the file name does not meet the criteria for continued execution through the control flow, it will just proceed with the next iteration of the for each file...

    John Rowan

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

  • RE: ForEach container specifying files using NOT operator?

    By the way, I tested the expression and it should work as-is.

    John Rowan

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

  • RE: ForEach container specifying files using NOT operator?

    I'm with you. So here's how I see this comming together in terms of tasks/steps.

    1. Set up For Each container.

    -- use Foreach File Enumerator

    ...

    John Rowan

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

  • RE: Execute process Task

    You need to use the expression builder to set the arguements property to

    "/c c:\practice_move_pdfs.bat " + @user::book

    or something similar.

    John Rowan

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

  • RE: ForEach container specifying files using NOT operator?

    After looking at this a bit closer, it appears that there is a limitation to what you can define the FileSpec property to be as the expresssion is not evaluated...

    John Rowan

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

  • RE: ForEach container specifying files using NOT operator?

    Set the FileSpec property using the expression builder.

    John Rowan

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

  • RE: Issue with truncation due to FOREIGN KEY constraint.

    SQL Server will not allow you to use the TRUANCATE TABLE command on a table referenced by a foreign key. You have 2 options.

    1. Drop foreign key, truncate table,...

    John Rowan

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

  • RE: Comparing the Different combination of numbers

    First, take the data modeler out back and beat him with a rubber hose. We're dealing with relational data here, right? That is what a RDBMS is used...

    John Rowan

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

  • RE: Query to retrieve monthly data

    Just a note to add. If you have an index on Date, Lynn's query would be the preferred method as it should result in an index seek. The...

    John Rowan

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

  • RE: Query to retrieve monthly data

    I think you'll need to provide a bit more information before anyone can help you. Working with dates is pretty straight forward with SQL, but we need to know...

    John Rowan

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

  • RE: SSIS multi-environment configuration in a single SQL Server table

    Great article Scott. I love your approach. Just curious, what are you using for your Package Protection Level, server storage?

    John Rowan

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

  • RE: Strange T-SQL Behavior

    Wow....this one should make it to the 'evil' interview questions list.

    John Rowan

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

Viewing 15 posts - 1,411 through 1,425 (of 3,232 total)