Forum Replies Created

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

  • 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...

  • RE: Protecting SSRS reports

    I see your point. My questions was strickly refferring to building a bundle of reports that we then sell as a package to a client.

    In that case we grant...

  • RE: Protecting SSRS reports

    It won't really. The only different it'll make is that now the report is on the web server rather than report server. Still the source is freely available...

  • RE: Help - TSQL Question

    Something like this should do the trick.

    SELECT COUNT(dtCnts.*) As NbApplications, dtCnts.CntContacts FROM (

    SELECT ApplNbr, COUNT(*) As CntContacts FROM dbo.Contacts GROUP BY ApplNbr

    ) dtCnts

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