Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 19,560 total)

  • RE: SQL server compatibilty level

    tchaturvedi (5/19/2014)


    ohh ok!! I thought so, just looking some work around other that reinstallation. thanks for all your help.

    Nope nothing else could be done in that case.

    Good luck

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: how come can write SELECT TOP 1%' without a FROM clause?

    There is no special name for it. It's just another way of writing a join condition.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: how come can write SELECT TOP 1%' without a FROM clause?

    KoldCoffee (5/18/2014)


    Just wondering why this SELECT TOP subquery works in the below sql query, when it doesn't have a FROM clause. What are keywords I can search to learn more...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Is SQL 2014 DETA any better than SQL 2012 DETA ?

    I would say no. It is just DETA afterall. The usual precautions still apply - proceed with extreme caution and know your data.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SQL server compatibilty level

    What Gail said is spot on.

    If you want to see it in tsql, here is something that will work.

    WITH compatversions AS (

    SELECT 65 AS MajorVersion ,'SQL Server 6.5' AS ServerVersion

    UNION

    SELECT...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Mysterious performance issue when joining a view

    Grant Fritchey (5/16/2014)


    To address the scan, you need to either have a filter of some kind to reduce the amount of data, or fix the conversion so that the optimizer...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSIS looping trough sysobjects

    See if this article will be of any help.

    http://bisherryli.com/2011/03/06/ssis-pass-a-variable-to-a-ole-db-source-in-a-data-flow/

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Getting used to new databases and environments

    The database diagram tool is a lightweight data modeling tool. At least until you have a diagram created that matches your schema.

    If you are trying to get a feel...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSIS looping trough sysobjects

    What exactly are you trying to do with these 400+ tables through SSIS in a looping manner?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSIS looping trough sysobjects

    So back to the original questions.

    What kind of data flow task? The data flow is essentially just a container for different kinds of tasks. So what kind of...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSIS looping trough sysobjects

    nviggiani 99687 (5/16/2014)


    Script task inside the foreach loop container

    K. FWIW - A script task is not a DF task.

    Inside the script task, you need to add your variable to...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SSIS looping trough sysobjects

    What kind of DF task?

    Is your DF inside the foreach containter?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: String or binary data would be truncated.

    As Louis said, do a select len(whateveryourcolumnis) for all of the columns and find which one has lengths that are beyond your target table definitions.

    Having a staging table with data...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    Ed Wagner (5/16/2014)


    SQLRNNR (5/16/2014)


    Ed Wagner (5/16/2014)


    SQLRNNR (5/16/2014)


    gyroscopic

    Axis

    Allies

    Board Game

    Fun times

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    Ed Wagner (5/16/2014)


    SQLRNNR (5/16/2014)


    gyroscopic

    Axis

    Allies

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 3,136 through 3,150 (of 19,560 total)