Viewing 15 posts - 7,876 through 7,890 (of 18,926 total)
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...
August 22, 2010 at 8:25 am
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
August 22, 2010 at 8:21 am
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...
August 22, 2010 at 7:51 am
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...
August 22, 2010 at 7:47 am
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...
August 20, 2010 at 9:56 am
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...
August 20, 2010 at 8:38 am
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...
August 20, 2010 at 7:37 am
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:
August 20, 2010 at 4:19 am
Yup, anything you need the last of something that's a really good way to go :hehe:.
August 19, 2010 at 12:58 pm
DECLARE @str VARCHAR(250)
set @str = '\\IP_Address\DirName\DirName\DirName\twProcessDB_20100819173001.trn'
SELECT RIGHT(@str, CHARINDEX('\', reverse(@str), 1) - 1)
August 19, 2010 at 12:16 pm
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...
August 19, 2010 at 5:06 am
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 :...
August 18, 2010 at 10:09 am
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...
August 17, 2010 at 6:41 am
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...
August 16, 2010 at 9:43 am
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...
August 16, 2010 at 8:51 am
Viewing 15 posts - 7,876 through 7,890 (of 18,926 total)