Forum Replies Created

Viewing 15 posts - 1,576 through 1,590 (of 5,678 total)

  • RE: Inserting a header record for every detail record with SSIS?

    You're most likely going to want to try to use an asynchronous transformation script component in mid-stream. Why asynchronous? Because it's 2 rows for every 1, which isn't...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Bring back data from multiple servers and multiple databases into one location

    pamozer (4/30/2012)


    In my ssis package how do I change the database that the procedure is running on in the for each container. I have an Execute SQL Task that...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Changing Data type from char to numeric

    DataAnalyst110 (5/1/2012)


    Evil Kraig F (4/30/2012)


    Until we see the error you're getting this is hard to troubleshoot, however, you might want to take a look at the column and WHERE test...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Are the posted questions getting worse?

    Greg Edwards-268690 (5/1/2012)


    Jeff Moden (5/1/2012)


    Evil Kraig F (4/29/2012)


    SQL Saturday out here in Phoenix was a lot of fun, and of particular interest I met a LOT of good people, including...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: How to take the snap shot of a table in sql server 2008

    tinnusqlserver (4/30/2012)


    Thanks Craig for your response. Our goal is to generate a report by using the snapshot table. we are creating a forecast comparison report which will compare the forecasts...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Super SLOW ms access query speeds via odbc to sql server table

    Two things.

    1) Create your view as a passthrough query, preferably with the necessary restrictors. That'll help not have to pull the entire table back to access and into memory...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: data from flat file

    Use a derived column that will check for blank spaces and insert the null version of the datatype into the column if that happens.

    Basically, for each column, you'll do something...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: How to take the snap shot of a table in sql server 2008

    Well, no, not really.

    You can either reconstruct the data from an auditing structure which will hold all deltas, or you can set up a process (say, that runs overnight) that...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Changing Filegroup names and Filegroup files - midstream. . .

    Hey Rich, how's it going? Graduated to partitions since I last saw you, congratz. 🙂

    What Gail (and a few of us) really need is a consolidated script that you...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Capacity Planning SQL Server 2005

    sqldba_newbie (4/30/2012)


    Minaz Amin (6/11/2009)


    You need to consider scaling up your processor, RAM, Netwrok Speed, Fast disk subsystem apart from DB load balancing. If number of users increase then start thinking...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Changing Data type from char to numeric

    Until we see the error you're getting this is hard to troubleshoot, however, you might want to take a look at the column and WHERE test the ISNUMERIC(Academic_Score) = 0...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: Bring back data from multiple servers and multiple databases into one location

    pamozer (4/30/2012)


    So we currently have 18 instances across 16 servers with approximately 350 databases per instance. I have to run multiple stored procedures against each database and the combine...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: a ridiculous data problem

    dglane (4/30/2012)


    That was an interesting article indeed, Evil Kraig F.

    I would be comparing two tables (vs. a set of variables or one row).

    See, a single row, to me anyway, is...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: When Will You Upgrade to SQL Server 2012?

    TravisDBA (4/30/2012)


    This kind of puts people into a quandary because on the one hand the business for whatever reason(s) is not ready for the upgrade, and then on the other...


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • RE: covering indexes

    Safe to assume your Primary Key is also your Clustered index?


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

Viewing 15 posts - 1,576 through 1,590 (of 5,678 total)