Forum Replies Created

Viewing 15 posts - 39,961 through 39,975 (of 49,571 total)

  • RE: Huge not performant tabled valued Function

    J-F Bergeron (4/6/2009)


    Now, they are asking me to insert that "Price calcullation" within a query that will be used in the products screen. So when they will query a vendor...

  • RE: Query tuning

    Please note that the fixing portion of this article is solely looking at indexes. Nothing whatsoever on badly-written queries. That's another article and one that Tony will likely be nagging...

  • RE: Query Doubts

    Vijaya Kadiyala (4/6/2009)


    Simple tip about WHERE Condition, If you have "n" tables in FROM Clause then you need to have minimum n-1 where conditions to avoid any cross joins.

    Better suggestion,...

  • RE: Query tuning

    prvreddy (4/6/2009)


    Hi,

    1) Assume i have a stored procedure. It is taking more time, then what are key steps we look into about that query. I mean how do we do...

  • RE: Reference 'Deleted' table: Dynamic SQL

    Look up sp_executesql. It allows passing of parameters to and from dynamic SQL.

  • RE: after rebuilt is fragmentation higher then before

    radek (4/6/2009)


    BTW: Of course I know, if I have small table that it is not good to create index.. but i dont know that 20000 rows is too small 🙂

    No,...

  • RE: after rebuilt is fragmentation higher then before

    Krishna Potlakayala (4/6/2009)


    In your script you should also include something like i think it is if the number of pages >2000 then you should consider rebuilding or defragging them.

    1000, and...

  • RE: Join

    I would suggest that you cast both columns to numeric before joining. That way trailing zeros will be completely ignored. This, of course, assumes that all values in the column...

  • RE: Challenging SQL interview questions

    Ramesh (4/6/2009)


    Now, if I would have posted that question in SSC and I would be very un-happy:crazy: if I receive a response such as "No interview questions".

    If you had asked...

  • RE: Difference between Outer Join and Left Outer Join

    waqarlaghari (4/6/2009)


    In quries it uses both words "Left Outer Join" and "Outer Join". So i was confused.

    In SQL Server it's not possible to have just OUTER JOIN specified. Doing...

  • RE: after rebuilt is fragmentation higher then before

    Small indexes often don't rebuild properly. It's nothing to worry about, fragmentation isn't an issue on such small indexes.

  • RE: after rebuilt is fragmentation higher then before

    How big's the index? How many pages?

  • RE: HIGH CPU activity last 4 days!!!

    2cams (4/6/2009)


    *********UPDATE**********

    I restored the Distribution DB DANKIE TOG!!!!!

    Dis 'n plesier.

  • RE: error of sintax

    Lowell (4/6/2009)


    well the reason for the error is one of the columns in an integer; you have to explicitly convert an integer to varchar when you are creating a string...

  • RE: Resolving Deadlocking problems

    Dean Jones (4/6/2009)


    With regards to [Using low transaction isolation levels]

    How can this be doen with Delete and Updates, i thought it was mainly reads.

    Read uncommitted is only for selects (and...

Viewing 15 posts - 39,961 through 39,975 (of 49,571 total)