Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 3,232 total)

  • RE: Flat file and extra data column

    SSIS is very metadata dependant. Each source, destination, and the transformations that you put in between them rely heavily on the metadata that SSIS gets from the source and...

    John Rowan

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

  • RE: How to Transfer data, data archieving, good strategy?

    Some of that depends on how you will be using your backend database. Is the application using it, is it kept around for compliance, is it used for reporting,...

    John Rowan

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

  • RE: Need help with SSIS packages

    The Conditional Split transformation is what you'll need to pull off a CASE statement. It will let you bucket, using expressions, your data in your pipleline and route each...

    John Rowan

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

  • RE: Simple filter

    What does the query plan look like? Do you have an index on the account type or class code columns?

    John Rowan

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

  • RE: Combine Queries

    How about providing us with your table structure, sample data (in a readily consumable format) and an example of the output your would want to see based off of your...

    John Rowan

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

  • RE: Simple filter

    Checkai gave you exactly what you asked for. If it does not work, how about showing us an example of some data that you want filtered out that this...

    John Rowan

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

  • RE: Partitioning tables

    Yes, you definately want to use year/week and not have weeks from different years in a partition. Here's a great article on table partitioning that uses a sliding window...

    John Rowan

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

  • RE: ForEach Loop substitute for speed purposes?

    I see from your link that :

    The XML source does not validate the data in the XML file against the XSD.

    It must just do a basic structural validation. You'll...

    John Rowan

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

  • RE: How to print 1st row of one table followed by 1st row of second and so on

    I did not say to not use a CTE. Its just an alternative way of coding the same solution. As far as ease-of-reading goes, they're almost identical w/...

    John Rowan

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

  • RE: OLE DB Destination - Preserving Data Integrity

    You'll notice if you look at the metadata for each of the outputs from the XML source, that the parent node ID is included as metadata for the dependant nodes....

    John Rowan

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

  • RE: ForEach Loop substitute for speed purposes?

    Just an after-thought Greg, but I wanted to point out that you can still do schema validations with the incomming xml using schema collections. I'm not sure if that...

    John Rowan

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

  • RE: ForEach Loop substitute for speed purposes?

    Thanks for the update Greg. You should get a pretty good pat on the back for that improvement....from 100 to 40,000! That's impressive!

    John Rowan

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

  • RE: Finding a Mentor

    There are 2 ways we learn, mentors and mistakes. A mentor can be a person, but it can also be a support group like SSC or your local user...

    John Rowan

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

  • RE: Query optimation help

    Can you provide sample data to show the problem you just described?

    John Rowan

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

  • RE: How to print 1st row of one table followed by 1st row of second and so on

    And w/o the CTE:

    DECLARE @Table1 TABLE (col1 char(2), col2 int)

    INSERT INTO @Table1

    SELECT 'aa', 12 UNION ALL

    SELECT 'bb', 22 UNION ALL

    SELECT 'cc', 33

    DECLARE @Table2 TABLE (col1 char(2), col2 int)

    INSERT INTO @Table2

    SELECT...

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