Forum Replies Created

Viewing 15 posts - 1,606 through 1,620 (of 2,894 total)

  • RE: improve performance of sp

    ...

    what is the alternative of any of this??

    ...

    Alternative is here: http://www.sqlservercentral.com/articles/Best+Practices/61537/

    , but you've been referred to this magic place so many times but failed to follow simple tips...

    I have...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Get related fields from record containing MAX()

    Have you tried http://www.sqlservercentral.com/articles/Best+Practices/61537/?

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: WildCard Alternatives.

    ggjjbb1983 (5/9/2012)


    Hi,

    I'm aware that using a wildcard on both sides of a search criteria will stop the index being used, because of the first %:

    e.g. Select * from person where...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: WildCard Alternatives.

    full text search

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Many aggregates in one query

    ... complex OLAP is better done in a tool specifically designed to do OLAP such as SSAS...

    So far OP failed to present enough details about required output to judge on...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Trying to create Set Statment when Clause is met ??

    david.ostrander (5/9/2012)


    Thank you both for the replies...

    And to save on the knuckle beating with a ruler for future post I have reread the best practices on asking questions article.

    +100 for...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Table Trigger works for one user but not the other

    Yeah, the thread title "Trigger works for one user but not..." did catch my attention. As I do hate discrimination of any sort... :hehe:

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Trying to create Set Statment when Clause is met ??

    Sean Lange (5/9/2012)


    Phil Parkin (5/9/2012)


    Sean Lange (5/8/2012)


    With 526 points I would think you would know you should provide a bit more detail than this.

    --

    Looks like 62 points to me...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Many aggregates in one query

    Is there a way to produce an output with profitable products per week, year etc in one query?

    There is a way!

    But, how exactly do you want results to look like?...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Table Trigger works for one user but not the other

    ...

    When the FedEx software inserts data into the ITEMSENT table, the trigger is, in fact, being ran but the data is not getting updated in the CONTACT2 table as stated...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Converting TEXT columns to VARCHAR(MAX)

    ...

    But the DBA refuses to do the changes, as long there is no really need for it...

    He follows "If it ain't broke, don't fix it" paradigm.

    So, do break something...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Need help with SQL statement using COUNT function

    ColdCoffee (5/8/2012)


    Eugene Elutin (5/8/2012)


    1. If you group by LastYearQtyActualContainers and ForecastQtyContainers, you cannot SUM

    LastYearQtyActualContainers - ForecastQtyContainers

    One small correction here Eugene, you can SUM the columns used in GROUP BY,...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Just a Quick Question

    ...not because of all of the usual gump that people spout about not using triggers (they are the devil along with cursors and function

    ...

    I'm an atheist. Are you afraid...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Query Performance issue.

    You can set your FT index population to CHANGE_TRACKING AUTO.

    It will make FT index to be updated after data is modified, not immediately, but quite close to it.

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

  • RE: Query Performance issue.

    ... Surely it doesnt update the catalog every time a query it?

    I cannot understand what are you up to exactly, but:

    No, the FT catalog is not updated every time you...

    _____________________________________________
    "The only true wisdom is in knowing you know nothing"
    "O skol'ko nam otkrytiy chudnyh prevnosit microsofta duh!":-D
    (So many miracle inventions provided by MS to us...)

    How to post your question to get the best and quick help[/url]

Viewing 15 posts - 1,606 through 1,620 (of 2,894 total)