Forum Replies Created

Viewing 15 posts - 13,651 through 13,665 (of 19,560 total)

  • RE: p2v client application config file pointing to production

    My primary concern would be that you have an application config file on the database server. Typically you would not want to host the application on the same server...

    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: SYS User

    Your welcome.

    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: SYS User

    It is related to the sys schema. The sys schema is the owner of many system objects (dmvs for instance).

    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: get count from count query

    You're welcome.

    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: get count from count query

    audracmckay (6/9/2010)


    hmm. no I'm on 2005 too. Sorry. I guess i didn't notice that either!

    That's all good. Solutions for both types are posted. The SQL 2000 version will...

    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: get count from count query

    Here is a SQL 2000 version

    Declare @CounterTable Table (Table_Name Varchar(50), NumOccurrences int)

    Insert into @CounterTable (Table_Name, NumOccurrences)

    SELECT Table_Name

    ,COUNT(Table_Name) AS NumOccurrences

    FROM INFORMATION_SCHEMA.Columns

    GROUP BY Table_Name

    HAVING ( COUNT(Table_Name) >= 0 )

    Select Count(Table_Name) as ColCount,...

    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: get count from count query

    Are you truly on SQL 2000?

    Here is a solution for SQL 2005 (sorry just noticed the forum group after having worked the solution - will post a sql 2000 solution...

    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: web analytics

    It will depend on how you want to present the data on the website. Both SSRS and OLAP can help you with that - but the presentation of the...

    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: one to one relation ship

    Put one more feather in that cap. I do it for the same reasons as Grant mentioned. As Elliot said, proceed cautiously and make sure it is well...

    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: get count from count query

    Looks like the query is working, is there something that it is not doing that you would like it to do?

    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: web analytics

    SSRS and OLAP would be useful in performing web analytics.

    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: Install SQL Server 2008 STD Edition

    Yes, rerun setup and you will be able to install the tools.

    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: web analytics

    I'm with Steve on this. I don't understand what your question is. Could you elaborate?

    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: What does this error mean, and why is it being generated?

    Sounds like a good plan. 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: Alter command

    Two options

    Create a cursor that does essentially the same thing I just showed you.

    or

    Run that script, review the commands, and then set it up in a job to execute in...

    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 - 13,651 through 13,665 (of 19,560 total)