Forum Replies Created

Viewing 15 posts - 1,771 through 1,785 (of 5,685 total)

  • RE: Minimal Logging and BULK

    ColdCoffee (2/16/2012)


    How about this?

    1. Create a new database in another server with only one table that matches your source table

    2. BCP out data from your source table to a file

    3....

  • RE: Returning Multiple Results from Case Statement

    Can you help us understand your intent? It looks like you're trying to overload a single column to mean foreign and scholarship. Why would you do that when...

  • RE: Can I get three examples of ETL?

    SQLKnowItAll (2/16/2012)


    jake.mayher (2/16/2012)


    I agree with Jeff, ETL is in no way specific to the dimensional data warehouse. I define ETL as any process which takes data from one source into...

  • RE: Need help with SQL for crystal report

    Ah, thanks J.

    Lost, just an FYI, your code doesn't run well. You've mixed and matched #table and hard tables in there. No worries, I realize you're new, we...

  • RE: transaction log full by ssis job

    In full recovery mode minimal logging is out.

    You'll have to include backups into your process. Do a delete, backup the log. Perform an insert, backup the log. ...

  • RE: Need help with SQL for crystal report

    Hey Lost. Easiest ways are either using a Tally Table if you had one handy, or a quick and dirty Row_Number() function.

    Is it possible you can setup that sample...

  • RE: Please help on Logic

    Jeff Moden (2/13/2012)


    Actually, this is all very easy using BULK INSERT which now allows you to do like we used to do in BCP. Sequester errors in a file...

  • RE: Too Tired to Work Smart

    Avoiding the overseas sub-topic...

    I'm there now, I'm on a project that hit an oil slick and is at warp 12. Most of it's due to network kablewies during long...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (2/16/2012)


    Evil Kraig F (2/15/2012)


    Brandie Tarvin (2/15/2012)


    bitbucket-25253 (2/15/2012)


    Brandie Tarvin (2/15/2012)


    bitbucket-25253 (2/15/2012)


    Brandie

    go here

    http://originalchocolatebar.com/newintro.html

    HA! That's exactly what I need. Thanks. @=)

    Now, now be honest is it the chocolate or the...

  • RE: MERGE

    Another +1 for a good question. I got it right by sheer luck. I ignored the trailing semicolon bit earlier, mostly because I always forget them anyway... *blush*.

    Seriously...

  • RE: sp_executesql()

    Was the sp_executeSQL statement parameterized? It might be caching a bad plan the same way bad parameter sniffs affect queries. This would be my most likely assumption. ...

  • RE: How many indexes is too many ?

    SQLKnowItAll (2/15/2012)


    I would actually structure the application to call separate stored procedures based on the parameters provided. This way you don't have this messy code; i.e. GetResumesByName, GetResumesByNameAndNumber, GetResumesByCity.

    More...

  • RE: How many indexes is too many ?

    Using Dynamic SQL is an excellent choice for removing the pain point from catchall search queries like this one.

    For one of the most effective discussions on it, review this link...

  • RE: Please help me with this Dynamic Sql Query

    sql.kishore1 (2/15/2012)


    can you please help me to fix the issue with this Query

    What is the issue? EDIT: Before you ask, no, I didn't run it to see. I...

  • RE: There must be an easier way of doing this...

    jarid.lawson (2/15/2012)


    Now that all of the back story is out, here are my questions. Does SSIS have a way of accounting for multiple file names?

    The ForEach loop can handle looping...

Viewing 15 posts - 1,771 through 1,785 (of 5,685 total)