Forum Replies Created

Viewing 15 posts - 346 through 360 (of 14,953 total)

  • RE: ssis FEL containter

    What you're doing makes sense. It's a good way to handle this kind of thing. I'm just not sure I can offer any help on debugging your loop...

  • RE: Cannot restore from network

    Try a UNC path instead of a mapped drive letter.

  • RE: ssis FEL containter

    Lots of possibilities here. Could be the scripts don't do anything because they aren't applicable (like Where clauses that cause no rows to be affected). Could be they...

  • RE: Restore will upgrade db compatibility level automatically?

    It should keep the compatibility level you started with. The upgrades are in the database actual structure, etc. That's usual when restoring from a lower version of SQL...

  • RE: Need Help on SSIS ..Urgent Task

    It sounds to me like you have a business definition for a workflow, and you need to turn it into a technical specification, then work out an implementation path.

    Judging by...

  • RE: Missing Indexes on Temp tables

    ScottPletcher (12/17/2012)


    TheSQLGuru (12/16/2012)


    My statement about making "queries" faster is about the ENTIRE process. The act of populating a temp table with an index already on the temp table before...

  • RE: Problem with Datetime Function

    Something that many don't know about SARGability is that some functions, regardless of side of equation in a Where clause, are SARGable.

    Try this:

    SET NOCOUNT ON;

    USE ProofOfConcept;

    GO

    CREATE TABLE dbo.SARGTest (

    DT DATETIME...

  • RE: Enhanced Variable Declaration in SQL Server 2005 Mode

    bleroy (12/14/2012)


    As GSquared said:

    Personally, I'd roll back the QA/staging environment to SQL 2005 till prod is ready to be upgraded, and avoid this whole mess.

    It is still beyond me...

  • RE: Finding combinations of values

    CELKO (12/14/2012)


    .. Total failure.. Besides which, I believe my earlier post was the same idea, except coded correctly 🙂 .

    Yeah, it was awful! :crazy:

    What I wanted to do was...

  • RE: Finding combinations of values

    CELKO (12/13/2012)


    My table structure

    Please read just one little book on SQL and RDBMS. Please, just one little book! This is not a table; it has no key; it...

  • RE: Enhanced Variable Declaration in SQL Server 2005 Mode

    ScottPletcher (12/13/2012)


    I'd suggesting not using that particular new "enhancement" at all while you still have ANY older instances / compatability settings.

    It doesn't save you that much anyway. Not worth...

  • RE: Need help with a query

    I'm not really familiar with your table. That makes it kind of hard to know what to suggest.

  • RE: Finding combinations of values

    You're welcome. Glad I could help.

  • RE: Are the posted questions getting worse?

    The Dixie Flatline (12/13/2012)


    Budget cuts are the reason the first Death Star didn't have a grate or something covering the exhaust port.

    Really? I always just assumed a Jawa stole...

  • RE: Finding combinations of values

    delete from MyTable

    where Col1 is null and Col2 is null and Col3 is null

    or Col1 is null and Col2 is null and Col4 is null

    or Col1 is null and Col3...

Viewing 15 posts - 346 through 360 (of 14,953 total)