Forum Replies Created

Viewing 15 posts - 1,276 through 1,290 (of 2,462 total)

  • RE: weired performance killing

    i am also interested in table/index definition

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Invalid length parameter passed to the SUBSTRING function.

    vwilliams (9/22/2010)


    Can anyone see what is wrong with this statement?

    what kind of error you are getting ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Question about Triggers in SQL SERVER 2005

    grkanth81 (9/23/2010)


    Hi Guys,

    I am using SQL SERVER 2005.

    I havent used any trigger till now in my job. So I am facing a slight problem in understanding and writing the code.....

    I...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Backup restore from 2 different server

    patrick.blais (9/22/2010)


    I am frequently taking a backup of production database (on a production Domain) and restore them on a DEV sql server (on a DEV domain).

    you can also go...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: help interpreting missing index view

    Study the execution plan before and after the index ( suggested by gail) and see what got improved ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Update Statistics & Transaction log

    GilaMonster (9/22/2010)


    Stats shouldn't generate that much log data (unless you have millions of them). Index rebuilds will.

    informative

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: SQl Query performace

    Exec plan shows index scan and key lookup on BusinessData.

    so create non clus index on BusinessData

    (

    [NAICS Code],

    [Business name],

    CityState)

    But one concern , bdf.* in select , Do you really need...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: SQl Query performace

    abcim (9/22/2010)


    It takes 40 Seconds.

    But when I remove, and ind.industryname like 'Franchising%',

    It takes 0.01 Seconds.

    Because the column IndustryName doesnt have any index , create an index on this column,...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Extremely slow query

    Jack Corbett (9/22/2010)


    Foreign Keys are not indexes

    but i think, by default it gives non-clustered index.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: dbmail error log limt size

    iqtedar (9/22/2010)


    recycling ONLY the dbmail worked..thnaks

    Recycling .how ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Views Vs Tables

    Thanks grant, can you brief about the execution plan difference between these two. can we have the different plan for a view and query ( included into the view )...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Extremely slow query

    first of all JOIN sequence

    in fast : persexprByquarter table with employeeHistory ( 4502 records) and then EmployeeGroups table

    in Slow : employeeHistory with EmployeeGroups (9048 records)...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: dbmail error log limt size

    Did anybody unmark the "database mail" option from sql server configuration area ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Views Vs Tables

    Tara-1044200 (9/21/2010)


    the execution plans are choosen differently.

    No , view has same exec plan as it has for inner incorporated query.sql optmizer treats both view and query same while analyzing the...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: SQl Query performace

    abcim (9/21/2010)


    Please tell me that if I increase CPU speed or increase CPU cores, then whether it effect sql query?

    i would say NO. let Sql server handle the CPU or...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 1,276 through 1,290 (of 2,462 total)