Viewing 15 posts - 1 through 15 (of 64 total)
Glad you found the cause.
One thing I had problems with on a Cluster before - and it took months to sort out - was priority boost.
The cluster had been set...
April 22, 2010 at 7:23 am
Hi,
do you have any other error in the SQL error log or in the windows event logs at around the same time?
Seth
April 22, 2010 at 3:52 am
I use this for date parameters:
Select Right('0' + Cast(Day(dateRange) as Varchar(2)),2) +'/'+
Right('0' + Cast(Month(dateRange)as Varchar(2)),2) + '/'+
cast(Year(dateRange) as char(4)) as label,
dateRange as value
Then in Report Parameters...
April 1, 2010 at 8:29 am
As per Cliff Jones
The answer should be 12 not 22
(I see I missed the Set followed by Select
set @b-2 = ' '+@a + 2
select @a...
March 25, 2010 at 10:38 am
I got this right because I read the question quickly and didn't notice the missing columns.
However, I have gotten these questions wrong before where there were deliberate 'mistakes' like this.
...
February 26, 2010 at 6:46 am
We use Redgate's SQL Compare.
You can generate a script for all the changes - eg from UAT to Live.
You can also run the same compare to get a script from...
January 20, 2010 at 9:33 am
Thanks for the warning - that is the sort of thing I have been caught out on before.
I am running this in SSRS and it is working fine for me.
I...
January 18, 2010 at 2:06 am
OK Peddie you got me searching for more config info.
After reading to the bottom of the page in the link you provided I saw that the email To filed is...
November 19, 2009 at 2:48 am
Thanks Gift Peddie
The problem isn't with subscriptions or sending emails as such.
For example - I have Content Manager Rights and I can subscribe ok.
This is what happens:
Click on subscriptions...
November 19, 2009 at 2:27 am
Thanks Ian - that might be just the sort of thing I am after.
If I start using powershell it might be useful to replace some of my old scripts I...
November 10, 2009 at 7:09 am
Hi Phil
Yes - the vb part just copes the file.
I have a couple of sequence containers that have the 3 steps 1 and 3 are TSQL backup and restore tasks...
October 29, 2009 at 9:59 am
Hi Dan
Sort will probably use TempdB - but normally having an up-to-date index and stats will remove the need to do this as they already have a record of the...
October 26, 2009 at 6:15 am
Also data imports will use tempdb (espically Bulk inserts) - but the point I want to make was: sortintempdb for an index will only affect tempdb when they are building...
October 26, 2009 at 5:53 am
Hi Dan
I appreciate developers using temp but that is not because the index has sortintemp enabled. It is going to be because they are creating and using tempoary tables.
Seth
October 26, 2009 at 3:07 am
Viewing 15 posts - 1 through 15 (of 64 total)