Viewing 15 posts - 691 through 705 (of 1,957 total)
DaveDB (10/18/2013)
October 20, 2013 at 3:54 am
with ten(N) as
(select ROW_NUMBER() over(order by @@spid) from (values(0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) a(a))
,hundred(N) as
(select ROW_NUMBER() over(order by @@spid) from ten t1,ten t2)
,thousand(N) as
(select ROW_NUMBER() over(order by @@spid) from ten t1,hundred h2)
,million(N) as
(select ROW_NUMBER()...
October 18, 2013 at 4:17 pm
Did you check the database compatibility level?
October 18, 2013 at 9:15 am
Jeff Moden (10/17/2013)
mister.magoo (10/17/2013)
...Time Of Day is not something you can average...
Gosh... I have to disagree with that statement that you and Sean made. What if the task is...
October 18, 2013 at 1:06 am
DaveDB (10/17/2013)
I have to say that once again Microsoft has fallen short with their attempt at creating a reporting tool. I have spend the past 2 days trying to...
October 17, 2013 at 6:26 pm
Yes, that's my point.
Although it's not clear from the help on Technet, I am pretty sure (without a setup to test it on at the moment) that the server name...
October 16, 2013 at 12:26 pm
I'm really sorry, but I just don't understand what you want.
What parameters do you want default values in ?
What data type are those parameters?
Can they hold other values than the...
October 15, 2013 at 4:03 pm
Ravikptel (10/15/2013)
I need help with expression in SSRS which can give me last week of the previous month by default. and that only option...
October 15, 2013 at 2:37 pm
You could use a function to return the three values Hours, Minutes, Seconds for the time difference.
How you then display them is a simple matter of formatting in the front...
October 15, 2013 at 12:43 pm
jdean-1028471 (10/15/2013)
October 15, 2013 at 12:18 pm
Isn't your linked server called Willis02, not R2D2?
EXEC sp_serveroption 'Willis02', 'rpc out', 'true';
EXEC sp_serveroption 'Willis02', 'rpc', 'true';
October 14, 2013 at 6:23 pm
This reminds me of an old sql challenge or similar test...
October 14, 2013 at 6:20 pm
You might want to put this on the end of that query:
where hostprocess<>''
October 14, 2013 at 6:11 pm
Viewing 15 posts - 691 through 705 (of 1,957 total)