Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 3,232 total)

  • RE: Global Temp Tables: Triggers Vs Stored Procedure

    Is this a single user application? If not, how do you plan to keep the global temp table name unique for the thread that is creating it?

    Using global temp...

    John Rowan

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

  • RE: You guys suck. every time we have to go and register or it says we have to go and click the f**king link. and the email doesnt get send immediately.

    What on Earth does that mean?

    I'm sure if you can describe your problem in a way that we can understand what you are trying to do, someone can help you....

    John Rowan

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

  • RE: WMI Query Data Reader connection string

    I'm looking forward to reading it!

    John Rowan

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

  • RE: Not able to execute Procedure in OLE DB source with dynamic source table

    Yes, that may help, but I think you'll still have some challenges to deal with. Data flows are coupled closely to the metadata returned by a source adapter. ...

    John Rowan

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

  • RE: Not able to execute Procedure in OLE DB source with dynamic source table

    OK. SSIS will not be able to resolve the metadata from a dynamic query so you'll need another approach. If you are trying to cut down on development...

    John Rowan

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

  • RE: Not able to execute Procedure in OLE DB source with dynamic source table

    Source adapters in your data flow cannot be dynamic. They must return the exact same metadata each time they run and the SSIS validation routine must be able to...

    John Rowan

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

  • RE: Update Row with latest Data

    Florian Reischl (7/1/2009)


    Should be possible with DENSE_RANK within a CROSS APPLY but...

    First:

    Your sample data contain:

    101656 05/05/09 5' 6.5" 66.50

    101656 05/05/09

    101656 05/05/09 5' 5.75" 65.75

    101656 05/12/09

    101656 05/27/09

    There is no uniqueness...

    John Rowan

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

  • RE: Update Row with latest Data

    DECLARE @Table TABLE (cust_id int, date datetime, height varchar(10), weight varchar(10))

    INSERT INTO @Table

    SELECT 1, '01/01/2009', '5''2', '110lbs' UNION ALL

    SELECT 1, '01/02/2009', NULL, NULL UNION ALL

    SELECT 1, '01/03/2009', NULL, NULL...

    John Rowan

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

  • RE: High CPU - trying to find the process resonsible

    Yep, great articles. Once you've generated trace data, it's just a matter of loading the trace data into a table where you can group/sum/search for the processes responsible for...

    John Rowan

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

  • RE: Problem referring to a SSIS variable inside Script task

    I'll ask again, is there a reason why you need to use a Script component as your source to read from a flat file? It sounds to me like...

    John Rowan

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

  • RE: How to set server and databases at runtime?

    You are 'unable' to run it on your other 2 servers? What does 'unable' mean? Do you get errors, do you not have access to the servers? ...

    John Rowan

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

  • RE: Concatenating fields with possible additional character

    DECLARE @Address TABLE(Zip varchar(10), PlusFour varchar(4))

    INSERT INTO @Address

    SELECT '68114', NULL UNION ALL

    SELECT '68132', '1234'

    SELECT ZIP + CASE WHEN LEN(PlusFour) > 0 THEN '-'+PlusFour ELSE '' END AS FullZIP

    FROM @Address

    John Rowan

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

  • RE: Problem referring to a SSIS variable inside Script task

    So you're using the Script Component as the source? Have you considered using a flat file conection manager instead?

    John Rowan

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

  • RE: tsql multiple rows select statement

    Pretty straight forward concept, but we'll need sample data and schema to really help out here. From a high level perspective, here's what you'll need.

    INSERT INTO DestinationTableName(Col1, Col2, Col3)

    SELECT...

    John Rowan

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

  • RE: Exporting multiple CSV files into SQL Database using SSIS

    OK, here's what you'll need to do.

    1. Set up a For Each Loop Container in your control flow.

    -- Collection tab settings

    ...

    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,351 through 1,365 (of 3,232 total)