Forum Replies Created

Viewing 15 posts - 7,876 through 7,890 (of 18,926 total)

  • RE: Performance tuning

    Yup, the good old addage that you can achieve 80% of the results by doing 20% of the work. That holds extremely true in sql server tuning.

    I've even found...

  • RE: Are the posted questions getting worse?

    I got a big challenge for you guys.

    How to link to 3500 servers (all outside your network and company) over the internet, dynamically, safely and in real time.

    http://www.sqlservercentral.com/Forums/Topic973049-1526-1.aspx

  • RE: top 5 in each group

    check out ROW_NUMBER() using the partition by clause in books online.

    Keep in mind that the new column is only available in the where clause after going to a derived table...

  • RE: help needed in code tuning.

    Here's a weird idea, start worrying about it when you plan to move to sql 201? and having the upgrade advisor throwing errors and warnings.

    In the mean time...

  • RE: help needed in code tuning.

    ColdCoffee (8/19/2010)


    Krishnraj (8/19/2010)


    Gilamonster...

    as he said -

    Gila is not "HE"... GilaMonster @ Gail Shaw is a girl and SHE is a MVP in SQL Server as well...:-)

    Ya but she looks...

  • RE: SubString Help

    Yup... but only use in this case. When manipulating names and adresses you can get in trouble. But in this case the only trouble would be to have...

  • RE: Business Objects to SSRS Migration

    An even more important question than what is being used...

    why more to SSRS in the first place? What's so wrong with B.O. that you will be able to fix...

  • RE: SubString Help

    wow you guys like to work hard!!!

    DECLARE @str VARCHAR(250)

    DECLARE @name VARCHAR(250)

    set @str = '\\IP_Address\DirName\DirName\DirName\twProcessDB_20100819173001.trn'

    SET @name = RIGHT(@str, CHARINDEX('\', reverse(@str), 1) - 1)

    SELECT @name, REPLACE(@str, @name, '')

    :w00t::cool::hehe:

  • RE: SubString Help

    Yup, anything you need the last of something that's a really good way to go :hehe:.

  • RE: SubString Help

    DECLARE @str VARCHAR(250)

    set @str = '\\IP_Address\DirName\DirName\DirName\twProcessDB_20100819173001.trn'

    SELECT RIGHT(@str, CHARINDEX('\', reverse(@str), 1) - 1)

  • RE: How can I identify unused Reports

    Well then that should be your best bet. List all the reports, make some "help" file and present to all users at once. Then at the end of...

  • RE: How can I identify unused Reports

    From my experience cleanup is often a bit of a waste of time (unless done right after dev). However here's the way to keep your history for longer :...

  • RE: deadlock

    Here's a very crud way for solving the problem once in a while.

    exec sp_who2

    Look at the blocked by column. That will list the spid that is most likely blocking...

  • RE: tracing the replay

    The only thing I can think of is that by default, profiler excludes its own application name.

    So you may get different results by removing that filter from the 2nd trace...

  • RE: Protecting SSRS reports

    Moreover the only we saw to enforce that license was to host the reports on our own servers in our building. But that comes with a host of major...

Viewing 15 posts - 7,876 through 7,890 (of 18,926 total)