Forum Replies Created

Viewing 15 posts - 601 through 615 (of 3,232 total)

  • RE: Where are you?

    What reputation is that?

    John Rowan

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

  • RE: Today's Random Word!

    brown eye

    John Rowan

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

  • RE: For Each Loop Container copy and rename files a sequential number

    Phil Parkin (3/22/2010)


    Expressions allow you to use variables, but not to assign their values.

    Yep, Phil's correct. I did not see the assignment. You'll need to increment your variable...

    John Rowan

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

  • RE: For Each Loop Container copy and rename files a sequential number

    Make sure you type cast your counter variable as string....otherwise, you cannot include it in your string variable.

    John Rowan

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

  • RE: For Each Loop Container copy and rename files a sequential number

    Well, what error are you getting?

    John Rowan

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

  • RE: Sql server string executing

    What error are you getting?

    Just off the top of my head, you need to change your sysdatabases to sys.databases.

    John Rowan

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

  • RE: Timeout errors

    Looking back at the original post, I now see that we were not told of the nature of the timeout operation. I was assuming that a SELECT statement was...

    John Rowan

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

  • RE: Dynamic OLE DB Connection Password

    No problem, glad to help.

    John Rowan

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

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    Glad to help.

    So now that you've fixed the performance problem with your SP, I think you still have some work to do. Go back to my first post and...

    John Rowan

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

  • RE: DBCC DROPCLEANBUFFERS

    Very interesting...I have never read that before. When performance testing, I typically just issue the DBCC DROPCLEANBUFFERS and DBCC FREEPROCCACHE commands.

    It makes sense that dropping only the...

    John Rowan

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

  • RE: DBCC DROPCLEANBUFFERS

    Where did you get the idea that you have to checkpoint before running this? DBCC DROPCLEANBUFFERS clears out the clean buffers. Checkpoints flush out the dirty buffers so...

    John Rowan

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

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    One more thing to keep in mind.....if you plan to combine the 2 packages into one, you no longer need the Stored Procedure so everything I stated above was really...

    John Rowan

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

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    rds207 (3/19/2010)


    could you please let me know why we have used where ec_step_id is Null?

    As there are no nulls in ec_step_id.....

    It's how you write an outer join when you want...

    John Rowan

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

  • RE: SQL SERVER 2008 - SSIS PACKAGE HANGS

    First, your stored procedure will still be inefficient. Replace your query with the query that I posted in my last post. You are still using NOT IN....change that...

    John Rowan

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

  • RE: save 0321 in table

    It really depends on what the data represents. If it represents numeric data, it needs to be stored as a numeric type like int. Theres a difference in...

    John Rowan

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

Viewing 15 posts - 601 through 615 (of 3,232 total)