Forum Replies Created

Viewing 15 posts - 19,381 through 19,395 (of 19,560 total)

  • RE: Question of the Day for 19 Jul 2004

    Odd how the answer I selected was the answer provided as being correct - but I got it wrong.

    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: Mass. says "No Vendor Default PWDs"

    It goes to the protection of the consumer and their private data. Any person doing business in another state needs to protect the consumer data that resides in that...

    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 Performance measurement

    sys.dm_os_performance_counters would be a good place to start.

    And then it depends on what your needs are as to which counters to study and graph.

    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: Beginning T-SQL

    I agree with Grant, you don't necessarily need to master TSQL up front. The job will be more difficult without TSQL.

    Other than books, you may want to check out...

    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: Mass. says "No Vendor Default PWDs"

    Good information indeed.

    Another one to add to the pile with Cal. Privacy, Sox, and PCI.

    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: SP3 install for SQL Server but which version????????

    IA64 is for the Itanium 64Bit processor class.

    X64 is for the Other sets.

    From what you listed as installed, you should use the X64 version.

    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: Monitoring Database Growth

    Keep in mind when setting the size, you want to be able to have enough space such that at least 3 months or so will be accomodated without an Autogrow.

    If...

    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: Seperete 1MB Auto Grow question

    Another possible area that caused the extra space was alluded to in the first response by Steve. It is possible that there was a reindex as well.

    Options for 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: If you weren't a DBA what would you be doing?

    Hadn't thought of it but....

    Mud Farming comes to mind 🙂

    Seriously...

    Maybe an Engineer

    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 as a Serial Date

    see

    Previous Forum Thread

    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: Another trigger problem!

    Go ahead and remove the paretheses from your select clause

    instead of

    select

    (inserted.PedNum,

    ...

    inserted.[PedObs],

    '2')

    select

    inserted.PedNum,

    ...

    inserted.[PedObs],

    '2'

    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: Statement return NULL

    Maybe it should look something more like:

    AND (tlkp_Item.Model = 'LCT 1680' OR tlkp_Item.Model LIKE '%[X]%')

    Or completely eliminate the second Model 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: Database Design & Professional Responsibility

    Let's not forget that all too often this is the same kind of stuff FTEs run into when accepting a new position as well. Bad design, unwillingness to change,...

    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 to find what table on what file?

    I was curious about the same thing recently. What I found was that when you have multiple files in a filegroup, you end up with the table splitting across...

    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: Grant Create View Ability Without Over Permissioning

    After some poking around at it, here is what I came up with:

    When Granting alter, it grants alter any schema by default. This could be just as bad 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 - 19,381 through 19,395 (of 19,560 total)